customize nvim a bit
This commit is contained in:
parent
85ad686f44
commit
675aec35e7
@ -43,6 +43,7 @@ Plug 'tpope/vim-surround'
|
|||||||
Plug 'jiangmiao/auto-pairs'
|
Plug 'jiangmiao/auto-pairs'
|
||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
Plug 'nathanaelkane/vim-indent-guides'
|
Plug 'nathanaelkane/vim-indent-guides'
|
||||||
|
Plug 'ggandor/leap.nvim'
|
||||||
|
|
||||||
" And this is where the plugins no longer be
|
" And this is where the plugins no longer be
|
||||||
call plug#end()
|
call plug#end()
|
||||||
@ -60,4 +61,14 @@ let g:indent_guides_enable_on_vim_startup = 0
|
|||||||
let g:indent_guides_guide_size = 1
|
let g:indent_guides_guide_size = 1
|
||||||
let g:indent_guides_auto_colors = 0
|
let g:indent_guides_auto_colors = 0
|
||||||
hi IndentGuidesOdd ctermbg=darkgrey
|
hi IndentGuidesOdd ctermbg=darkgrey
|
||||||
hi IndentGuidesEven ctermbg=lightgrey
|
hi IndentGuidesEven ctermbg=lightgrey
|
||||||
|
|
||||||
|
" Enable leap for jumping
|
||||||
|
lua require('leap').add_default_mappings()
|
||||||
|
|
||||||
|
" Make the gitgutter look cleaner
|
||||||
|
let g:gitgutter_override_sign_column_highlight = 0
|
||||||
|
highlight clear SignColumn
|
||||||
|
highlight GitGutterAdd guifg=#009900 ctermfg=2
|
||||||
|
highlight GitGutterChange guifg=#bbbb00 ctermfg=3
|
||||||
|
highlight GitGutterDelete guifg=#ff2222 ctermfg=1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user