加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
init.lua 606 Bytes
一键复制 编辑 原始数据 按行查看 历史
Micah Halter 提交于 2022-03-17 10:00 . Optimize user config
local impatient_ok, impatient = pcall(require, "impatient")
if impatient_ok then
impatient.enable_profile()
end
local utils = require "core.utils"
utils.disabled_builtins()
utils.bootstrap()
local sources = {
"core.options",
"core.autocmds",
"core.plugins",
"core.mappings",
}
for _, source in ipairs(sources) do
local status_ok, fault = pcall(require, source)
if not status_ok then
error("Failed to load " .. source .. "\n\n" .. fault)
end
end
local polish = utils.user_plugin_opts "polish"
if type(polish) == "function" then
polish()
end
-- keep this last:
utils.compiled()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化