config: remove the python virtualenv

- Removes the python virtualenv has pynvim is installed through uv and
  manages itself the virtual environment.

Co-Authored-by: iGor milhit <igor@milhit.ch>
fix-treesitter
iGor milhit 2026-02-18 11:21:56 +01:00
parent 47eb5c5f1d
commit f38196b573
Signed by: igor
GPG Key ID: 692D97C3D0228A99
3 changed files with 2 additions and 10 deletions

View File

@ -25,8 +25,8 @@ This new configuration is written with the help of:
## Python provider
I'm using a virtual environment for the python provider, as the
[documentation][7], using `pyenv`.
I'm *not* using virtual environment for the python provider, as the
[documentation][7] explain, installating `pynvim` through `uv`.
## Structure

View File

@ -1,4 +1,3 @@
-- Load all module files
require("core.python-provider")
require("core.keymaps")
require("core.options")

View File

@ -1,7 +0,0 @@
-- Set a virtualenv as python provider
-- https://neovim.io/doc/user/provider.html#python-virtualenv
-- vim.g.python3_host_prog = "/home/igor/.pyenv/versions/py-nvim3.10/bin/python"
-- vim.g.python3_host_prog = "/home/igor/.pyenv/shims/python"
vim.g.python3_host_prog = "/home/igor/.pyenv/versions/3.10.0/envs/py-nvim3.10"