Set up neovim python venv

This commit is contained in:
flyingscorpio@arch-desktop 2020-12-22 22:14:43 +01:00
parent c8c9b2b8a0
commit 6ce1c44aff
3 changed files with 8 additions and 0 deletions

View file

@ -11,6 +11,9 @@ fileignoreconfig:
- filename: dotfiles/shell/profile
ignore_detectors:
- filename
- filename: dotfiles/zsh/zshenv
ignore_detectors:
- filename
- filename: dotfiles/zsh/zshrc
ignore_detectors:
- filename

View file

@ -1,3 +1,4 @@
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc
let g:python3_host_prog = '~/.config/nvim/neovim-python3/bin/python'

View file

@ -14,3 +14,7 @@ export LESS_TERMCAP_so="$(printf '%b' '')"
export LESS_TERMCAP_se="$(printf '%b' '')"
export LESS_TERMCAP_us="$(printf '%b' '')"
export LESS_TERMCAP_ue="$(printf '%b' '')"
if [[ -n $VIRTUAL_ENV && -e "${VIRTUAL_ENV}/bin/activate" ]]; then
source "${VIRTUAL_ENV}/bin/activate"
fi