Skip to content

Commit

Permalink
Merge pull request #10 from ContainerCraft/nvim-keymap
Browse files Browse the repository at this point in the history
map jj to esc
  • Loading branch information
usrbinkat authored Oct 4, 2024
2 parents f5ea4b0 + 3eaf8d0 commit 0fda69b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here
vim.keymap.set("i", "jj", "<ESC>", { silent = true })
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here
vim.keymap.set("i", "jj", "<ESC>", { silent = true })

0 comments on commit 0fda69b

Please sign in to comment.