[nvim] Use neovim env if available

This commit is contained in:
Fabian Ising
2024-04-12 23:30:40 +02:00
parent 8a428ac3a5
commit 0d332ab5e6

View File

@@ -271,3 +271,6 @@ if has("macunix")
" Required for virtualenvs
let g:python3_host_prog="/usr/local/bin/python3"
endif
if filereadable(expand("~/python-envs/neovim/bin/python3"))
let g:python3_host_prog="~/python-envs/neovim/bin/python3"
endif