lualine colors

This commit is contained in:
root 2024-05-09 16:48:22 +02:00
parent 2ba6193a92
commit e89faeca98
6 changed files with 23 additions and 5 deletions

View File

@ -10,10 +10,9 @@ end
function LineNumberColors() function LineNumberColors()
vim.api.nvim_set_hl(0, 'LineNrAbove', { fg='#51B3EC', bold=true}) vim.api.nvim_set_hl(0, 'LineNrAbove', { fg='#51B3EC', bold=true})
vim.api.nvim_set_hl(0, 'LineNr', { fg='white', bold=true }) vim.api.nvim_set_hl(0, 'LineNr', { fg='white', bold=true })
vim.api.nvim_set_hl(0, 'LineNrBelow', { fg='#FB508F', bold=false }) vim.api.nvim_set_hl(0, 'LineNrBelow', { fg='#FB508F', bold=true})
vim.o.signcolumn = "auto" vim.o.signcolumn = "auto"
end end
-- ColorMyPencils() -- ColorMyPencils()
LineNumberColors() LineNumberColors()

1
after/plugin/various.lua Normal file
View File

@ -0,0 +1 @@
vim.opt.clipboard = "unnamed,unnamedplus"

View File

@ -2,6 +2,7 @@
"LuaSnip": { "branch": "master", "commit": "b152822e1a4bafb6bdf11a16cc26525cbd95ee00" }, "LuaSnip": { "branch": "master", "commit": "b152822e1a4bafb6bdf11a16cc26525cbd95ee00" },
"cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" }, "cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" },
"conform.nvim": { "branch": "master", "commit": "6dc1603ea408f476a57937bbeaf7f86520a21a98" }, "conform.nvim": { "branch": "master", "commit": "6dc1603ea408f476a57937bbeaf7f86520a21a98" },
"cutlass.nvim": { "branch": "main", "commit": "1ac7e4b53d79410be52a9e464d44c60556282b3e" },
"harpoon": { "branch": "master", "commit": "ccae1b9bec717ae284906b0bf83d720e59d12b91" }, "harpoon": { "branch": "master", "commit": "ccae1b9bec717ae284906b0bf83d720e59d12b91" },
"instant.nvim": { "branch": "master", "commit": "294b6d08143b3db8f9db7f606829270149e1a786" }, "instant.nvim": { "branch": "master", "commit": "294b6d08143b3db8f9db7f606829270149e1a786" },
"lazy.nvim": { "branch": "main", "commit": "d3974346b6cef2116c8e7b08423256a834cb7cbc" }, "lazy.nvim": { "branch": "main", "commit": "d3974346b6cef2116c8e7b08423256a834cb7cbc" },
@ -20,6 +21,5 @@
"telescope.nvim": { "branch": "master", "commit": "fac83a556e7b710dc31433dec727361ca062dbe9" }, "telescope.nvim": { "branch": "master", "commit": "fac83a556e7b710dc31433dec727361ca062dbe9" },
"undotree": { "branch": "master", "commit": "56c684a805fe948936cda0d1b19505b84ad7e065" }, "undotree": { "branch": "master", "commit": "56c684a805fe948936cda0d1b19505b84ad7e065" },
"vim-fugitive": { "branch": "master", "commit": "ce882460cf3db12e99f8bf579cbf99e331f6dd4f" }, "vim-fugitive": { "branch": "master", "commit": "ce882460cf3db12e99f8bf579cbf99e331f6dd4f" },
"vim-vinegar": { "branch": "master", "commit": "bb1bcddf43cfebe05eb565a84ab069b357d0b3d6" }, "vim-vinegar": { "branch": "master", "commit": "bb1bcddf43cfebe05eb565a84ab069b357d0b3d6" }
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }
} }

View File

@ -91,6 +91,19 @@ return lazy.setup({
'nvim-lualine/lualine.nvim', 'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' } dependencies = { 'nvim-tree/nvim-web-devicons' }
}, },
{
"gbprod/cutlass.nvim",
opts = {
cut_key = m,
override_del = nil,
exclude = {},
registers = {
select = "_",
delete = "_",
change = "_",
},
}
},
-- Uncomment these lines if you want to use the plugins -- Uncomment these lines if you want to use the plugins
-- use 'nvim-tree/nvim-tree.lua' -- use 'nvim-tree/nvim-tree.lua'

View File

@ -61,3 +61,6 @@ vim.keymap.set('n', '<C-J>', '<C-W><C-J>', {desc = 'Move to window below'})
vim.keymap.set('n', '<C-K>', '<C-W><C-K>', {desc = 'Move to window above'}) vim.keymap.set('n', '<C-K>', '<C-W><C-K>', {desc = 'Move to window above'})
vim.keymap.set('n', '<C-L>', '<C-W><C-L>', {desc = 'Move to window to the right'}) vim.keymap.set('n', '<C-L>', '<C-W><C-L>', {desc = 'Move to window to the right'})
vim.keymap.set('n', '<C-H>', '<C-W><C-H>', {desc = 'Move to window to the left'}) vim.keymap.set('n', '<C-H>', '<C-W><C-H>', {desc = 'Move to window to the left'})
--terminal ESC
vim.keymap.set('t', '<Esc>', [[<C-\><C-n>]],{noremap=true})

View File

@ -23,9 +23,11 @@ vim.opt.incsearch = true
vim.opt.termguicolors = true vim.opt.termguicolors = true
vim.opt.scrolloff = 8 vim.opt.scrolloff = 8
vim.opt.signcolumn = "yes" vim.opt.signcolumn = "auto"
vim.opt.isfname:append("@-@") vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50 vim.opt.updatetime = 50
vim.opt.colorcolumn = "80" vim.opt.colorcolumn = "80"
vim.opt.clipboard = "unnamedplus"