Coc-vim stuff
This commit is contained in:
parent
18aea20c85
commit
47f7a22e01
2
init.vim
2
init.vim
@ -1,4 +1,4 @@
|
|||||||
runtime plugins.vim
|
|
||||||
runtime options.vim
|
runtime options.vim
|
||||||
|
runtime plugins.vim
|
||||||
runtime keymaps.vim
|
runtime keymaps.vim
|
||||||
runtime util.vim
|
runtime util.vim
|
||||||
|
26
plugins.vim
26
plugins.vim
@ -1,21 +1,25 @@
|
|||||||
|
" coc.nvim
|
||||||
|
highlight CocErrorSign ctermfg=Red guifg=#dc322f
|
||||||
|
highlight CocWarningSign ctermfg=Yellow guifg=#b58900
|
||||||
|
|
||||||
" fzf
|
" fzf
|
||||||
let $FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -f -g "" 2> /dev/null'
|
let $FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -f -g "" 2> /dev/null'
|
||||||
if has('windows')
|
if has('windows')
|
||||||
let g:fzf_preview_window = ''
|
let g:fzf_preview_window = ''
|
||||||
endif
|
endif
|
||||||
let g:fzf_colors = {
|
let g:fzf_colors = {
|
||||||
\ 'bg': ['bg', 'Normal'],
|
\ 'bg': ['bg', 'Normal'],
|
||||||
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
|
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
|
||||||
\ 'border': ['fg', 'Ignore'],
|
\ 'border': ['fg', 'Ignore'],
|
||||||
\ 'fg': ['fg', 'Normal'],
|
\ 'fg': ['fg', 'Normal'],
|
||||||
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
|
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
|
||||||
\ 'header': ['fg', 'Comment'],
|
\ 'header': ['fg', 'Comment'],
|
||||||
\ 'hl': ['fg', 'Comment'],
|
\ 'hl': ['fg', 'Comment'],
|
||||||
\ 'hl+': ['fg', 'Statement'],
|
\ 'hl+': ['fg', 'Statement'],
|
||||||
\ 'info': ['fg', 'PreProc'],
|
\ 'info': ['fg', 'PreProc'],
|
||||||
\ 'marker': ['fg', 'Keyword'],
|
\ 'marker': ['fg', 'Keyword'],
|
||||||
\ 'pointer': ['fg', 'Exception'],
|
\ 'pointer': ['fg', 'Exception'],
|
||||||
\ 'prompt': ['fg', 'Conditional'],
|
\ 'prompt': ['fg', 'Conditional'],
|
||||||
\ 'spinner': ['fg', 'Label'],
|
\ 'spinner': ['fg', 'Label'],
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user