fix(python): correcty set variables from any location

This commit is contained in:
Michel 2023-09-01 20:36:14 +02:00
parent 4d729efd38
commit 83e4e8f6b8

View File

@ -1,9 +1,11 @@
-- See `:h map-table` for map modes
-- See `:h stdpath` for paths
--
vim.g.python3_host_prog = vim.fn.stdpath("config")
.. "/"
.. vim.fn.findfile("python3", vim.fn.stdpath("config") .. "/.direnv/**3")
-- Use Python from neoovim "config" folder
local python_root = vim.fn.glob(vim.fn.stdpath("config") .. "/.direnv/python*", true, true)[1]
vim.env.VIRTUAL_ENV = python_root
vim.env.PATH = python_root .. "/bin" .. ":" .. vim.env.PATH
vim.g.python3_host_prog = vim.fn.findfile("python3", python_root .. "/**3")
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")