mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
22 lines
520 B
Lua
22 lines
520 B
Lua
local impatient_ok, impatient = pcall(require, "impatient")
|
|
if impatient_ok then
|
|
impatient.enable_profile()
|
|
end
|
|
|
|
for _, source in ipairs {
|
|
"core.utils",
|
|
"core.options",
|
|
"core.plugins",
|
|
"core.autocmds",
|
|
"core.mappings",
|
|
"core.ui",
|
|
"configs.which-key-register",
|
|
} do
|
|
local status_ok, fault = pcall(require, source)
|
|
if not status_ok then
|
|
vim.api.nvim_err_writeln("Failed to load " .. source .. "\n\n" .. fault)
|
|
end
|
|
end
|
|
|
|
astronvim.conditional_func(astronvim.user_plugin_opts("polish", nil, false))
|