fix(python): correcty set variables from any location
This commit is contained in:
parent
4d729efd38
commit
83e4e8f6b8
10
init.lua
10
init.lua
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user