1
1
Fork 0

Vim expand selection

This commit is contained in:
Jo Wroten 2019-08-04 16:30:00 -05:00
parent 2a8a61325e
commit 0b19637524

View file

@ -60,6 +60,7 @@ Plug 'dense-analysis/ale'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-surround'
Plug 'terryma/vim-expand-region'
"" Project/File Navigation Plugins
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
@ -84,6 +85,9 @@ nnoremap <Leader>m :GFiles?<cr>
let g:buftabline_indicators=1
highlight BufTabLineFill ctermfg=11
highlight BufTabLineCurrent cterm=bold ctermfg=236 ctermbg=141 gui=bold guifg=#282A36 guibg=#BD93F9
"" vim-expand-region
vmap v <Plug>(expand_region_expand)
vmap <S-v> <Plug>(expand_region_shrink)
"" vim-startify
let g:startify_custom_header = [
\ ' Gaiety | 2019',
@ -103,6 +107,8 @@ let g:startify_custom_header = [
\ '<S-Tab> Previous buffer',
\ '<Leader>k Move line up',
\ '<Leader>j Move line down',
\ 'v Expand Selection',
\ 'S-v Un-expand Selection',
\ '',
\ ]
let g:startify_change_to_dir = 0