vim/keymaps.vim
2025-03-28 21:45:16 -04:00

33 lines
554 B
VimL

"leader key
let mapleader=" "
"disable arrows
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
"+++++++++++++++ NORMAL MODE ++++++++++++++++++
"tab switches tabs
nnoremap <TAB> gt
nnoremap <S-Tab> gT
"command mode with semi colon
nnoremap ; :
"saves and quits
nnoremap <leader>w :w
nnoremap <leader>q :wq
nnoremap <leader>x :q!
"+++++++++++++++ INSERT MODE +++++++++++++++++
"disable arrows
inoremap <Up> <NOP>
inoremap <Down> <NOP>
inoremap <Left> <NOP>
inoremap <Right> <NOP>
"remap escape
inoremap jk <Esc>"