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

12 lines
537 B
VimL

" -----------------------------------------------------------------------------
" - Neovim python host -
" Explicit declaration of python host program to "prevent suprises"
" -----------------------------------------------------------------------------
if !has('win32')
let g:python_host_prog = $HOME.'/.local/share/mise/shims/python2'
let g:python3_host_prog = $HOME.'/.local/share/mise/shims/python3'
else
let g:python_host_prog = $HOME.'/scoop/shims/python2'
let g:python3_host_prog = $HOME.'/scoop/shims/python3'
endif