diff --git a/lua/keybinds.lua b/lua/keybinds.lua index ca9d9ea..c875b40 100644 --- a/lua/keybinds.lua +++ b/lua/keybinds.lua @@ -16,3 +16,5 @@ vim.keymap.set("v", "y", "\"*y", { desc = "Yank into system clipboard" } vim.keymap.set("n", "s", [[:%s/\<\>//gI]], { desc = "Like `ciw` for any highlighted text (doesn't have to be word)" }) + +vim.keymap.set("i", "jk", "", { desc = "Exit insert mode" })