2022-01-29 12:32:23 -05:00
|
|
|
local present, impatient = pcall(require, "impatient")
|
|
|
|
|
|
|
|
if present then
|
|
|
|
impatient.enable_profile()
|
|
|
|
end
|
|
|
|
|
2022-05-23 03:24:03 -04:00
|
|
|
require "core"
|
|
|
|
require "core.utils"
|
|
|
|
require "core.options"
|
2022-05-31 15:19:23 -04:00
|
|
|
|
|
|
|
vim.defer_fn(function()
|
|
|
|
require("core.utils").load_mappings()
|
|
|
|
end, 0)
|
2021-11-13 20:19:33 -05:00
|
|
|
|
2022-05-23 03:24:03 -04:00
|
|
|
-- setup packer + plugins
|
|
|
|
require("core.packer").bootstrap()
|
|
|
|
require "plugins"
|
2022-05-23 05:24:59 -04:00
|
|
|
|
|
|
|
local user_conf, _ = pcall(require, "custom")
|
|
|
|
|
|
|
|
if user_conf then
|
|
|
|
require "custom"
|
|
|
|
end
|