dotvim/.vim/keymaps.vim
2015-02-28 22:42:56 +09:00

20 lines
403 B
VimL

let mapleader = ','
" core
nnoremap <silent> <Esc><Esc> :nohlsearch<Cr>
nnoremap <silent> <Bs> :bd<Cr>
nnoremap <silent> Q <Nop>
nnoremap <silent> ; :
nnoremap <silent> j gj
nnoremap <silent> k gk
" nerdtree
nnoremap <silent> <leader>t :NERDTreeToggle<Cr>
" vim-argwrap
nnoremap <silent> <leader>a :ArgWrap<Cr>
" vim-easy-align
vmap <Cr> <Plug>(EasyAlign)