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
10 lines
129 B
Lua
10 lines
129 B
Lua
local M = {}
|
|
|
|
M.setup = function()
|
|
require("core.options")
|
|
require("core.autocommands")
|
|
require("plugins.lazy")
|
|
end
|
|
|
|
return M
|