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,5 +1,21 @@
local ok, err = pcall(require, "core")
local userconf = pcall(require, "custom")
if not ok then
error("Error loading core" .. "\n\n" .. err)
if userconf then
require "custom"
end
local core_modules = {
"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
-- non plugin mappings
require("core.mappings").misc()