dotvim/.vim/keymaps.vim

14 lines
308 B
VimL
Raw Normal View History

let mapleader = ','
" core
nnoremap <silent> <C-h> :bnext<CR>
nnoremap <silent> <C-l> :bprevious<CR>
nnoremap <silent> <Esc><Esc> :nohlsearch<CR>
nnoremap <silent> Q <Nop>
" vim-argwrap
nnoremap <silent> <leader>a :call argwrap#toggle()<CR>
" vim-easy-align
2015-01-28 11:10:46 +00:00
vmap <CR> <Plug>(EasyAlign)