nvim: init.vim: Disable escape in command mode as well

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2019-11-22 17:17:34 +05:30
parent a56dac91d4
commit aa8e6dfd18

View file

@ -153,6 +153,7 @@ endif
inoremap jk <Esc>
cnoremap jk <C-C>
inoremap <Esc> <Nop>
cnoremap <Esc> <Nop>
" Use ; for commands.
nnoremap ; :
" Use Q to execute default register.