2021-02-23 11:27:32 +00:00
|
|
|
" -----------------------------------------------------------------------------
|
|
|
|
" - Neovim python host -
|
|
|
|
" Explicit declaration of python host program to "prevent suprises"
|
|
|
|
" -----------------------------------------------------------------------------
|
2021-07-29 21:06:24 +00:00
|
|
|
if !has('win32')
|
|
|
|
let g:python_host_prog = $HOME.'/.asdf/shims/python2'
|
|
|
|
let g:python3_host_prog = $HOME.'/.asdf/shims/python3'
|
|
|
|
else
|
|
|
|
let g:python_host_prog = $HOME.'/scoop/shims/python2'
|
|
|
|
let g:python3_host_prog = $HOME.'/scoop/shims/python3'
|
|
|
|
endif
|