feat(nvim): new plugins

codeium.vim (not using .nvim one because i want virtual text instead of a cmp source), modes to
highlight the current line backgroun dwith a color depending on the mode im currently in, and
lastly, suda to edit easily files with higher permissions
This commit is contained in:
Sergio Laín 2023-10-18 12:08:06 +02:00
parent 063cf3c98b
commit 670d7f6ef6
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,8 @@
return {
{
"Exafunction/codeium.vim",
build = ":Codeium Auth",
cmd = "Codeium",
event = "BufEnter",
},
}

View file

@ -0,0 +1,9 @@
return {
{
"mvllow/modes.nvim",
tag = "v0.2.0",
enabled = false,
event = "BufReadPost",
opts = {},
},
}

View file

@ -0,0 +1,16 @@
return {
{
"lambdalisue/suda.vim",
keys = {
{
"<leader>W",
":SudaWrite<CR>",
desc = "Suda Write",
},
},
cmd = {
"SudaRead",
"SudaWrite",
},
},
}