[vim] Add paths to python venvs to vimrc

This commit is contained in:
Eryn Wells 2018-09-16 14:13:02 -07:00
parent 318f02de92
commit f03e63c771

3
vimrc
View file

@ -8,6 +8,9 @@ let $VIM = $HOME."/.vim"
set nocompatible " use enhanced vim features
filetype off " Needs to be off for Vundle to work (?)
let g:python_host_prog=$HOME.'/.virtualenvs/neovim/bin/python'
let g:python3_host_prog=$HOME.'/.virtualenvs/neovim/bin/python3'
"
" VUNDLE PLUGINS
"