dotvim/.vim/keymaps.vim
2015-01-28 20:10:46 +09:00

14 lines
308 B
VimL

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
vmap <CR> <Plug>(EasyAlign)