1
Fork 0
satellite/dotfiles/neovim/init.lua
2022-12-27 14:02:03 +01:00

10 lines
180 B
Lua

local lazy_path = os.getenv("LAZY_NVIM_PATH")
if lazy_path == nil then
error("Lazy.nvim not installed!")
end
vim.opt.runtimepath:prepend(lazy_path)
require("my.init").setup()