mirror of
https://github.com/NvChad/NvChad.git
synced 2024-10-31 21:20:15 +00:00
20 lines
336 B
Lua
20 lines
336 B
Lua
local present, impatient = pcall(require, "impatient")
|
|
|
|
if present then
|
|
impatient.enable_profile()
|
|
end
|
|
|
|
require "core"
|
|
require "core.utils"
|
|
require "core.options"
|
|
|
|
-- setup packer + plugins
|
|
require("core.packer").bootstrap()
|
|
require "plugins"
|
|
|
|
local user_conf, _ = pcall(require, "custom")
|
|
|
|
if user_conf then
|
|
require "custom"
|
|
end
|