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