2022-01-29 18:32:23 +01:00
|
|
|
local present, impatient = pcall(require, "impatient")
|
|
|
|
|
|
|
|
if present then
|
|
|
|
impatient.enable_profile()
|
|
|
|
end
|
|
|
|
|
2022-05-23 09:24:03 +02:00
|
|
|
require "core"
|
|
|
|
require "core.utils"
|
|
|
|
require "core.options"
|
2022-05-30 09:03:46 +02:00
|
|
|
require("core.utils").load_mappings()
|
2021-11-14 02:19:33 +01:00
|
|
|
|
2022-05-23 09:24:03 +02:00
|
|
|
-- setup packer + plugins
|
|
|
|
require("core.packer").bootstrap()
|
|
|
|
require "plugins"
|
2022-05-23 11:24:59 +02:00
|
|
|
|
|
|
|
local user_conf, _ = pcall(require, "custom")
|
|
|
|
|
|
|
|
if user_conf then
|
|
|
|
require "custom"
|
|
|
|
end
|