From 799432e99e343c64737005961d1ab05551bdd5f4 Mon Sep 17 00:00:00 2001 From: siduck Date: Fri, 7 Jan 2022 07:30:55 +0530 Subject: [PATCH] load custom/init.lua at last | fix (#694) --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index c76b47e..e2405a9 100644 --- a/init.lua +++ b/init.lua @@ -1,6 +1,3 @@ --- try to call custom init -pcall(require, "custom") - local core_modules = { "core.options", "core.autocmds", @@ -16,3 +13,6 @@ end -- non plugin mappings require("core.mappings").misc() + +-- try to call custom init +pcall(require, "custom")