Vim expand selection
This commit is contained in:
parent
2a8a61325e
commit
0b19637524
1 changed files with 6 additions and 0 deletions
|
@ -60,6 +60,7 @@ Plug 'dense-analysis/ale'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
Plug 'tpope/vim-eunuch'
|
Plug 'tpope/vim-eunuch'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
|
Plug 'terryma/vim-expand-region'
|
||||||
"" Project/File Navigation Plugins
|
"" Project/File Navigation Plugins
|
||||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
|
@ -84,6 +85,9 @@ nnoremap <Leader>m :GFiles?<cr>
|
||||||
let g:buftabline_indicators=1
|
let g:buftabline_indicators=1
|
||||||
highlight BufTabLineFill ctermfg=11
|
highlight BufTabLineFill ctermfg=11
|
||||||
highlight BufTabLineCurrent cterm=bold ctermfg=236 ctermbg=141 gui=bold guifg=#282A36 guibg=#BD93F9
|
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
|
"" vim-startify
|
||||||
let g:startify_custom_header = [
|
let g:startify_custom_header = [
|
||||||
\ ' Gaiety | 2019',
|
\ ' Gaiety | 2019',
|
||||||
|
@ -103,6 +107,8 @@ let g:startify_custom_header = [
|
||||||
\ '<S-Tab> Previous buffer',
|
\ '<S-Tab> Previous buffer',
|
||||||
\ '<Leader>k Move line up',
|
\ '<Leader>k Move line up',
|
||||||
\ '<Leader>j Move line down',
|
\ '<Leader>j Move line down',
|
||||||
|
\ 'v Expand Selection',
|
||||||
|
\ 'S-v Un-expand Selection',
|
||||||
\ '',
|
\ '',
|
||||||
\ ]
|
\ ]
|
||||||
let g:startify_change_to_dir = 0
|
let g:startify_change_to_dir = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue