From 3fe72924db2e16d0cb5074873ee594f6a1aa1d95 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Thu, 2 Dec 2021 19:50:58 +0100 Subject: [PATCH] chore(nvim): add Python path variables --- nvim/init.vim | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/nvim/init.vim b/nvim/init.vim index baac05d..485b326 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -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_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 = "\" + " *** *** *** Key Mappings *** *** *** " ************************************ - -let mapleader = "\" - " Quick toggle between buffers noremap j :b# @@ -201,3 +205,4 @@ source ~/.config/nvim/plugins/base16-vim.vim call plug#end() doautocmd User PlugLoaded +