restructure init.lua | lspconfig
This commit is contained in:
parent
a256591e90
commit
8de3f4e84c
6 changed files with 69 additions and 72 deletions
22
init.lua
22
init.lua
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue