dotfiles/symlinks/vim/after/plugin/python_host.vim

11 lines
417 B
VimL
Raw Normal View History

2021-01-07 08:09:41 +00:00
" -----------------------------------------------------------------------------
" - Neovim python host -
" Explicit declaration of python host program to "prevent suprises"
"
" NEOVIM ONLY!
" -----------------------------------------------------------------------------
if has('nvim')
let g:python_host_prog = $HOME.'/.asdf/shims/python2'
let g:python3_host_prog = $HOME.'/.asdf/shims/python3'
endif