feat(nvim): Set python3_host_prog

This commit is contained in:
Price Hiller 2022-03-09 14:57:19 -06:00
parent 3aac100b9e
commit 726cecaff9

View File

@ -3,6 +3,7 @@ local g = vim.g
local M = {} local M = {}
M.setup = function() M.setup = function()
g.python3_host_prog = ("(%s)/.pyenv/shims/python3"):format(os.getenv("HOME"))
end end
return M return M