aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2022-12-19 21:02:57 +0200
committersrdusr <trevorgray@srdusr.com>2022-12-19 21:02:57 +0200
commit2f6cad7ff65fe0b20c03dce2a23a5188553529ee (patch)
treef58524bb2f425d86d63c0fc3906d45126e64f892 /lua
parentcf591f6ce3dc5826c3b6b695ca393ab8764dcd24 (diff)
downloaddotfiles-2f6cad7ff65fe0b20c03dce2a23a5188553529ee.tar.gz
dotfiles-2f6cad7ff65fe0b20c03dce2a23a5188553529ee.zip
Changed quick escape binding to 'jj'
Diffstat (limited to 'lua')
-rw-r--r--lua/user/keys.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/user/keys.lua b/lua/user/keys.lua
index b43cb87..2c07a5a 100644
--- a/lua/user/keys.lua
+++ b/lua/user/keys.lua
@@ -26,7 +26,7 @@ vim.g.mapleader = ";"
--vim.g.maplocalleader = ";"
-- "jj" to exit insert-mode
-map("i", "jk", "<esc>")
+map("i", "jj", "<esc>")
map("n", "<leader>m", ":messages<CR>")
map("n", "<leader>cd", ":cd %:p:h<CR>:pwd<CR>")