nVim/lua/core/init.lua
Robert Morrison 736ff3bef4 feat: initial NEAR functional commit
This commit is enough to make nvim start and bootstrap lazy
to actually use this commit as a base for your own config
- Add the directory 'lua/plugins/spec'
- Place plugin specs there
- Edit configuration as needed
2025-09-14 02:33:21 +01:00

10 lines
129 B
Lua

local M = {}
M.setup = function()
require("core.options")
require("core.autocommands")
require("plugins.lazy")
end
return M