Remap escape

This commit is contained in:
matzy 2024-03-18 16:17:05 +10:00
parent c3ac4e9b9d
commit ae03f9264c
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ vim.opt.hlsearch = true
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
-- Remap <Esc>
vim.keymap.set('i', '<C-c>', '<Esc>')
vim.keymap.set('i', 'jk', '<Esc>')
-- Tabs & indentation
vim.opt.tabstop = 4