Added chromatica

This commit is contained in:
Oliver Hartmann 2018-12-28 16:03:33 +01:00
parent 569090a88d
commit 45063f276e

View File

@ -30,6 +30,7 @@ if has("win32")
end end
end end
Plug 'Shougo/echodoc.vim' Plug 'Shougo/echodoc.vim'
Plug 'arakashic/chromatica.nvim', { 'do': ':UpdateRemotePlugins' }
call plug#end() call plug#end()
" =============Settings================== " =============Settings==================
filetype plugin on filetype plugin on
@ -170,3 +171,10 @@ let g:fzf_action = {
\ 'enter': 'tab split', \ 'enter': 'tab split',
\ 'ctrl-x': 'split', \ 'ctrl-x': 'split',
\ 'ctrl-v': 'vsplit' } \ 'ctrl-v': 'vsplit' }
" ===================Chromatica======================
let g:chromatica#enable_at_startup=1
if has("win32")
if hostname == "perryWin64"
let g:chromatica#libclang_path='F:\Tools\LLVM\bin\libclang.dll'
end
end