Fix neovim in virtualenvs

This commit is contained in:
Fabian Ising
2022-09-27 12:31:18 +02:00
parent b2b8d42d70
commit 11a589d138

View File

@@ -256,3 +256,8 @@ catch
endtry endtry
let g:tex_flavor = "latex" let g:tex_flavor = "latex"
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
if has("macunix")
" Required for virtualenvs
let g:python3_host_prog="/usr/local/bin/python3"
endif