chore: Clean init.lua

Why do we have a table to require a single module. We had this when we had plugins, colors etc. 
But we only have one module now. So why bother a list and looping through for a single module ?
pull/461/head^2
Ashin Antony 3 years ago committed by siduck76
parent dc80ae5795
commit 8726de1faa

@ -1,10 +1,4 @@
local init_modules = {
"core",
}
for _, module in ipairs(init_modules) do
local ok, err = pcall(require, module)
if not ok then
error("Error loading " .. module .. "\n\n" .. err)
end
local ok, err = pcall(require, "core")
if not ok then
error("Error loading " .. module .. "\n\n" .. err)
end

Loading…
Cancel
Save