From 683ca475aef1623eb619681f185ac1d1f8f6778a Mon Sep 17 00:00:00 2001 From: bretello Date: Wed, 22 Dec 2021 12:57:55 +0100 Subject: [PATCH] vim: cleanup fzf config --- vim/plugins_config.vim | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index 2737b56..8dd6f1a 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -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 set laststatus=2 showmode ruler