add custom plugins

This commit is contained in:
Joshua 2024-04-29 18:00:00 -05:00 committed by GitHub
parent c52e65c8bb
commit 0c9fa19c8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 72 additions and 0 deletions

View 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 = {}
}