Fix nvim override config path not expanding carrot

This commit is contained in:
Sonny Bakker 2020-10-03 12:06:32 +02:00
parent dd29e688c1
commit a23b6cb311

View file

@ -109,6 +109,6 @@ inoremap <Tab> <C-R>=Tab_Or_Complete()<CR>
" set default coc environment path " set default coc environment path
let g:python3_host_prog = '~/.local/lib/coc/.venv/bin/python' let g:python3_host_prog = '~/.local/lib/coc/.venv/bin/python'
if filereadable("~/.config/nvim/override.vim") if filereadable(expand('~/.config/nvim/override.vim'))
source ~/.config/nvim/override.vim source ~/.config/nvim/override.vim
endif endif