1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

only use vim-lsp-cxx-highlight if we have ccls

This commit is contained in:
jdhao 2020-11-25 22:20:48 +08:00
parent 4a4c85f903
commit e5bde8462a

View File

@ -21,7 +21,6 @@ Plug 'prabirshrestha/vim-lsp'
Plug 'lighttiger2505/deoplete-vim-lsp'
" Vim source for deoplete
if !executable('vim-language-server')
" only use neco-vim when vim-language-server is not available
Plug 'Shougo/neco-vim', { 'for': 'vim' }
@ -46,7 +45,9 @@ Plug 'machakann/vim-swap'
Plug 'vlime/vlime', {'rtp': 'vim/', 'for': 'lisp'}
" C++ semantic highlighting
Plug 'jackguo380/vim-lsp-cxx-highlight'
if executable('ccls')
Plug 'jackguo380/vim-lsp-cxx-highlight'
endif
"}}
"{{ Search related plugins