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
parent
47eb5c5f1d
commit
f38196b573
|
|
@ -25,8 +25,8 @@ This new configuration is written with the help of:
|
||||||
|
|
||||||
## Python provider
|
## Python provider
|
||||||
|
|
||||||
I'm using a virtual environment for the python provider, as the
|
I'm *not* using virtual environment for the python provider, as the
|
||||||
[documentation][7], using `pyenv`.
|
[documentation][7] explain, installating `pynvim` through `uv`.
|
||||||
|
|
||||||
## Structure
|
## Structure
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
-- Load all module files
|
-- Load all module files
|
||||||
require("core.python-provider")
|
|
||||||
require("core.keymaps")
|
require("core.keymaps")
|
||||||
require("core.options")
|
require("core.options")
|
||||||
|
|
|
||||||
|
|
@ -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"
|
|
||||||
Loading…
Reference in New Issue