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 ?
This commit is contained in:
Ashin Antony 2021-09-28 14:53:26 +05:30 committed by siduck76
parent dc80ae5795
commit 8726de1faa
1 changed files with 3 additions and 9 deletions

View File

@ -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
local ok, err = pcall(require, "core")
if not ok then
error("Error loading " .. module .. "\n\n" .. err)
end
end