Last active
October 19, 2016 19:18
-
-
Save jeanPokou/4f2eafba61302c7d112ff4594d3bc4ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Blundle 'yazug/vim-taglist-plus' "taglist plugin | |
Bundle 'terryma/vim-expand-region' "expand region plugin | |
" leader key + w to save | |
nnoremap <Leader>w :w <CR> | |
"map v to expand region plugin | |
vmap v <Plug>(expand_region_expand) | |
"map <S-v> to shrink region plugin | |
vmp <S-v> <Plug>(expand-region-shrink) | |
"return to select mode on last <S-v> | |
let g:expand_region_use_select_mode = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment