From f770e0b87df633d48581d464dd88af4c0b3e8eb6 Mon Sep 17 00:00:00 2001 From: Luca Matei Pintilie Date: Tue, 6 Jun 2023 18:17:22 +0200 Subject: Neovim: add escape keybind for terminal --- .config/nvim/lua/keybinds.lua | 1 + 1 file changed, 1 insertion(+) 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" }, "", "") vim.opt.whichwrap = "<,>,h,l,[,]" -- cgit v1.2.3