chore(nvim): add Python path variables

This commit is contained in:
Stefan Imhoff
2021-12-02 19:50:58 +01:00
parent b0129c251c
commit 3fe72924db

View File

@@ -60,12 +60,16 @@ set dictionary+=~/.config/nvim/dictionary/en_us.txt
set thesaurus+=~/.config/nvim/thesaurus/de_user.txt set thesaurus+=~/.config/nvim/thesaurus/de_user.txt
set thesaurus+=~/.config/nvim/thesaurus/de_openthesaurus.txt set thesaurus+=~/.config/nvim/thesaurus/de_openthesaurus.txt
" Python paths
let g:python_host_prog=$HOME.'/.pyenv/versions/neovim2/bin/python'
let g:python3_host_prog=$HOME.'/.pyenv/versions/neovim3/bin/python'
" Leader
let mapleader = "\<space>"
" *** *** *** Key Mappings *** *** *** " *** *** *** Key Mappings *** *** ***
" ************************************ " ************************************
let mapleader = "\<space>"
" Quick toggle between buffers " Quick toggle between buffers
noremap <leader>j :b#<CR> noremap <leader>j :b#<CR>
@@ -201,3 +205,4 @@ source ~/.config/nvim/plugins/base16-vim.vim
call plug#end() call plug#end()
doautocmd User PlugLoaded doautocmd User PlugLoaded