mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-01-07 15:04:55 +01:00
update vim conf
This commit is contained in:
parent
1b60722993
commit
d4acea8319
1 changed files with 17 additions and 0 deletions
|
@ -31,7 +31,24 @@ Plug 'tpope/vim-endwise'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
|
|
||||||
let g:rainbow_active = 1
|
let g:rainbow_active = 1
|
||||||
|
" default rainbow config is not rainbow enough
|
||||||
|
let g:rainbow_guifgs = [
|
||||||
|
\ '#e6261f',
|
||||||
|
\ '#eb7532',
|
||||||
|
\ '#f7d038',
|
||||||
|
\ '#a3e048',
|
||||||
|
\ '#49da9a',
|
||||||
|
\ '#34bbe6',
|
||||||
|
\ '#4355db',
|
||||||
|
\ '#d23be7',
|
||||||
|
\ ]
|
||||||
|
" all files should have all brackets highlighted
|
||||||
|
let g:rainbow_load_separately = [
|
||||||
|
\ ['*', [['(', ')'], ['\[', '\]'], ['{', '}'], ['<', '>']]],
|
||||||
|
\ ]
|
||||||
|
|
||||||
let NERDTreeShowHidden=1
|
let NERDTreeShowHidden=1
|
||||||
|
|
||||||
nnoremap <silent> fzf :FZF<CR>
|
nnoremap <silent> fzf :FZF<CR>
|
||||||
|
|
Loading…
Reference in a new issue