vim/keymaps.vim

35 lines
613 B
VimL

"leader key
let mapleader=" "
"+++++++++++++++ MULTI-MODE ++++++++++++++++++
"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<CR>
nnoremap <leader>q :wq<CR>
nnoremap <leader>x :q!<CR>
"+++++++++++++++ INSERT MODE +++++++++++++++++
"disable arrows
inoremap <Up> <NOP>
inoremap <Down> <NOP>
inoremap <Left> <NOP>
inoremap <Right> <NOP>
"remap escape
inoremap jk <Esc>"