Dot_Files/.config/nvim/lua/core/globals.lua
2022-03-09 14:57:52 -06:00

10 lines
148 B
Lua
Executable File

local g = vim.g
local M = {}
M.setup = function()
g.python3_host_prog = ("(%s)/.pyenv/shims/python3"):format(os.getenv("HOME"))
end
return M