Dot_Files/.config/nvim/lua/core/globals.lua

10 lines
151 B
Lua
Raw Normal View History

2022-02-28 08:04:02 -06:00
local g = vim.g
local M = {}
M.setup = function()
-- g.python3_host_prog = ("(%s)/.pyenv/shims/python3"):format(os.getenv("HOME"))
2022-02-28 08:04:02 -06:00
end
return M