diff options
-rw-r--r-- | .config/nvim/lua/keybinds.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/lua/keybinds.lua b/.config/nvim/lua/keybinds.lua index f4040c2..5d94697 100644 --- a/.config/nvim/lua/keybinds.lua +++ b/.config/nvim/lua/keybinds.lua @@ -42,6 +42,7 @@ vim.keymap.set({ "n"; "o"; "x" }, "W", function() spider.motion("w") end) vim.keymap.set({ "n"; "o"; "x" }, "E", function() spider.motion("e") end) vim.keymap.set({ "n"; "o"; "x" }, "B", function() spider.motion("b") end) vim.keymap.set({ "n"; "o"; "x" }, "gE", function() spider.motion("ge") end) +vim.keymap.set({ "t" }, "<ESC>", "<C-\\><C-n>") vim.opt.whichwrap = "<,>,h,l,[,]" |