change nvim config

This commit is contained in:
2024-10-24 00:25:39 +02:00
parent addb5d7383
commit fa0a61f581

View File

@@ -41,10 +41,14 @@ local defaults = {
normal_mode = { normal_mode = {
-- Better window movement -- Better window movement
["<C-h>"] = "<C-w>h", -- ["<C-h>"] = "<C-w>h",
["<C-j>"] = "<C-w>j", -- ["<C-j>"] = "<C-w>j",
["<C-k>"] = "<C-w>k", -- ["<C-k>"] = "<C-w>k",
["<C-l>"] = "<C-w>l", -- ["<C-l>"] = "<C-w>l",
["<C-h>"] = ":tabprevious<CR><CR>",
["<C-l>"] = ":tabnext<CR><CR>",
["<C-n>"] = ":tabnew<CR><CR>",
["<C-q>"] = ":tabclose<CR><CR>",
-- Resize with arrows -- Resize with arrows
["<C-Up>"] = ":resize -2<CR>", ["<C-Up>"] = ":resize -2<CR>",