✨ 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:
parent
063cf3c98b
commit
670d7f6ef6
3 changed files with 33 additions and 0 deletions
8
.config/nvim/lua/plugins/codeium.lua
Normal file
8
.config/nvim/lua/plugins/codeium.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
{
|
||||
"Exafunction/codeium.vim",
|
||||
build = ":Codeium Auth",
|
||||
cmd = "Codeium",
|
||||
event = "BufEnter",
|
||||
},
|
||||
}
|
9
.config/nvim/lua/plugins/modes.lua
Normal file
9
.config/nvim/lua/plugins/modes.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
{
|
||||
"mvllow/modes.nvim",
|
||||
tag = "v0.2.0",
|
||||
enabled = false,
|
||||
event = "BufReadPost",
|
||||
opts = {},
|
||||
},
|
||||
}
|
16
.config/nvim/lua/plugins/suda.lua
Normal file
16
.config/nvim/lua/plugins/suda.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
"lambdalisue/suda.vim",
|
||||
keys = {
|
||||
{
|
||||
"<leader>W",
|
||||
":SudaWrite<CR>",
|
||||
desc = "Suda Write",
|
||||
},
|
||||
},
|
||||
cmd = {
|
||||
"SudaRead",
|
||||
"SudaWrite",
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Reference in a new issue