restructure init.lua | lspconfig

This commit is contained in:
siduck
2021-11-14 06:49:33 +05:30
parent a256591e90
commit 8de3f4e84c
6 changed files with 69 additions and 72 deletions

View File

@@ -1,16 +0,0 @@
local core_modules = {
"core.custom",
"core.options",
"core.autocmds",
"core.mappings",
}
for _, module in ipairs(core_modules) do
local ok, err = pcall(require, module)
if not ok then
error("Error loading " .. module .. "\n\n" .. err)
end
end
-- set all the non plugin mappings
require("core.mappings").misc()