vim: cleanup fzf config

pull/6/head
bretello 2021-12-22 12:57:55 +01:00
parent 56d9cf12db
commit 683ca475ae
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 15 additions and 1 deletions

View File

@ -193,7 +193,21 @@ let g:UltiSnipsEditSplit="context"
"" Fzf
let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.9 } }
let g:fzf_colors = "gruvbox-dark"
let g:fzf_colors =
\ { 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Comment'],
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
\ 'hl+': ['fg', 'Statement'],
\ 'info': ['fg', 'PreProc'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'Conditional'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'] }
autocmd! FileType fzf
autocmd FileType fzf set laststatus=0 noshowmode noruler
\| autocmd BufLeave <buffer> set laststatus=2 showmode ruler