From d2e67b404f039ee05629bf4c2baae05d95be7ef5 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 17 Sep 2024 13:16:25 -0700 Subject: [PATCH] Move colors loading after lazy --- neovim/lua/init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/neovim/lua/init.lua b/neovim/lua/init.lua index 6120c17..f038683 100644 --- a/neovim/lua/init.lua +++ b/neovim/lua/init.lua @@ -7,7 +7,6 @@ local o = vim.o -- Helpers require("_settings") require("_bindings") -require("_colors") -- Use better grep programs if vim.fn.executable("rg") == 1 then @@ -25,3 +24,6 @@ vim.g.polyglot_disabled = { "go", "rust" } -- Plugins require("lazy_init") + +-- Load colors after plugins +require("_colors")