You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/zellij-nav.lua

33 lines
665 B
Lua

if true then
return
else
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 = {},
}
end