add custom plugins
This commit is contained in:
parent
ee52697924
commit
8f85ffb9ec
7 changed files with 72 additions and 0 deletions
22
lua/custom/plugins/zellij-nav.lua
Normal file
22
lua/custom/plugins/zellij-nav.lua
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
return {
|
||||
"https://git.sr.ht/~swaits/zellij-nav.nvim",
|
||||
lazy = true,
|
||||
event = "VeryLazy",
|
||||
keys = {
|
||||
{
|
||||
"<c-h>", "<cmd>ZellijNavigateLeft<cr>",
|
||||
{silent = true, desc = "navigate left"}
|
||||
}, {
|
||||
"<c-j>", "<cmd>ZellijNavigateDown<cr>",
|
||||
{silent = true, desc = "navigate down"}
|
||||
},
|
||||
{
|
||||
"<c-k>", "<cmd>ZellijNavigateUp<cr>",
|
||||
{silent = true, desc = "navigate up"}
|
||||
}, {
|
||||
"<c-l>", "<cmd>ZellijNavigateRight<cr>",
|
||||
{silent = true, desc = "navigate right"}
|
||||
}
|
||||
},
|
||||
opts = {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue