From 47f7a22e0126e68b09d2ea3f769fad720b96d4e3 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 1 Jun 2021 18:28:51 -0700 Subject: [PATCH] Coc-vim stuff --- init.vim | 2 +- plugins.vim | 26 +++++++++++++++----------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/init.vim b/init.vim index ae3bcdc..d367ef3 100644 --- a/init.vim +++ b/init.vim @@ -1,4 +1,4 @@ -runtime plugins.vim runtime options.vim +runtime plugins.vim runtime keymaps.vim runtime util.vim diff --git a/plugins.vim b/plugins.vim index 57613f3..787382f 100644 --- a/plugins.vim +++ b/plugins.vim @@ -1,21 +1,25 @@ +" coc.nvim +highlight CocErrorSign ctermfg=Red guifg=#dc322f +highlight CocWarningSign ctermfg=Yellow guifg=#b58900 + " fzf let $FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -f -g "" 2> /dev/null' if has('windows') let g:fzf_preview_window = '' endif let g:fzf_colors = { - \ 'bg': ['bg', 'Normal'], - \ 'bg+': ['bg', 'CursorLine', 'CursorColumn'], - \ 'border': ['fg', 'Ignore'], - \ 'fg': ['fg', 'Normal'], - \ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'], - \ 'header': ['fg', 'Comment'], - \ 'hl': ['fg', 'Comment'], - \ 'hl+': ['fg', 'Statement'], - \ 'info': ['fg', 'PreProc'], - \ 'marker': ['fg', 'Keyword'], + \ 'bg': ['bg', 'Normal'], + \ 'bg+': ['bg', 'CursorLine', 'CursorColumn'], + \ 'border': ['fg', 'Ignore'], + \ 'fg': ['fg', 'Normal'], + \ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'], + \ 'header': ['fg', 'Comment'], + \ 'hl': ['fg', 'Comment'], + \ 'hl+': ['fg', 'Statement'], + \ 'info': ['fg', 'PreProc'], + \ 'marker': ['fg', 'Keyword'], \ 'pointer': ['fg', 'Exception'], - \ 'prompt': ['fg', 'Conditional'], + \ 'prompt': ['fg', 'Conditional'], \ 'spinner': ['fg', 'Label'], \ }