chore(nvim): added python

This commit is contained in:
Juliano Barbosa 2024-08-22 16:32:07 -03:00
parent 729d3679ad
commit f5ad3e2197
No known key found for this signature in database
GPG Key ID: EB8B440F57360B3D
1 changed files with 5 additions and 0 deletions

View File

@ -90,6 +90,11 @@ P.S. You can delete this when you're done too. It's your config now! :)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- set python 3.11.9 as default python
vim.g.python2_host_prog = os.getenv 'PYENV_ROOT' .. '/versions/neovim2/bin/python'
vim.g.python3_host_prog = os.getenv 'PYENV_ROOT' .. '/versions/neovim3/bin/python'
vim.g.python_host_prog = os.getenv 'PYENV_ROOT' .. '/versions/neovim2/bin/python'
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false