1 Star 0 Fork 0

asddfdf/nvim

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
init.lua 710 Bytes
一键复制 编辑 原始数据 按行查看 历史
離夢華 提交于 2022-05-11 20:30 . 修复缺少文件错误
local present, impatient = pcall(require, "impatient")
if present then
impatient.enable_profile()
end
local core_modules = {
"core.utils",
"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
-- check if custom init.lua file exists
if vim.fn.filereadable(vim.fn.stdpath "config" .. "/lua/custom/init.lua") == 1 then
-- try to call custom init, if not successful, show error
local ok, err = pcall(require, "custom")
if not ok then
vim.notify("Error loading custom/init.lua\n\n" .. err)
end
return
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/asddfdf/nvim.git
[email protected]:asddfdf/nvim.git
asddfdf
nvim
nvim
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385