update neovim config

This commit is contained in:
Alexander Navarro 2023-09-13 22:16:28 -03:00
parent 24930aa8a3
commit 805221e92c
5 changed files with 37 additions and 42 deletions

View file

@ -64,38 +64,4 @@ return {
require("illuminate").configure(opts)
end,
},
{
"mrjones2014/smart-splits.nvim",
opts = { ignored_filetypes = { "nofile", "quickfix", "qf", "prompt" }, ignored_buftypes = { "nofile" } },
keys = {
{
"<C-h>",
function()
require("smart-splits").move_cursor_left()
end,
desc = "Move to left window",
},
{
"<C-j>",
function()
require("smart-splits").move_cursor_down()
end,
desc = "Move to bottom window",
},
{
"<C-k>",
function()
require("smart-splits").move_cursor_up()
end,
desc = "Move to upper window",
},
{
"<C-l>",
function()
require("smart-splits").move_cursor_right()
end,
desc = "Move to right window",
},
},
},
}