From d889b4b8fc56167edcfe055a9296b68288c801cc Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 5 May 2023 14:15:26 +0200 Subject: [PATCH] nvim: better key bindings fog tab navigation --- config/nvim/lua/user/keymaps.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/nvim/lua/user/keymaps.lua b/config/nvim/lua/user/keymaps.lua index 7dd44d1..f891e5b 100644 --- a/config/nvim/lua/user/keymaps.lua +++ b/config/nvim/lua/user/keymaps.lua @@ -31,8 +31,8 @@ map('n', '', 'vertical resize -1') map('n', '', 'vertical resize +1') -- easy tab navigation -map('n', '.', 'tabnext', { silent = true }) -map('n', ',', 'tabprevious', { silent = true }) +map('n', '', 'tabnext', { silent = true }) +map('n', '', 'tabprevious', { silent = true }) -- move lines up and down map('n', '', [[:move .+1==]], { silent = true })