From 9c172da2be415a2b69a020a94689fc2ebd2f6cee Mon Sep 17 00:00:00 2001 From: redjax <5534031+redjax@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:52:34 -0400 Subject: [PATCH 1/2] fix(lazy-theme): Fix themes loading in lazyvim profile --- config/nvim-lazyvim/lua/plugins/themes.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/nvim-lazyvim/lua/plugins/themes.lua b/config/nvim-lazyvim/lua/plugins/themes.lua index d8d207a..cfd77d8 100644 --- a/config/nvim-lazyvim/lua/plugins/themes.lua +++ b/config/nvim-lazyvim/lua/plugins/themes.lua @@ -3,7 +3,7 @@ return { { "daltonmenezes/aura-theme", name = "aura-theme", - lazy = false, + lazy = true, -- Let Themery manage loading priority = 1000, config = function(plugin) vim.opt.rtp:append(plugin.dir .. "/packages/neovim") @@ -75,7 +75,7 @@ return { { "eldritch-theme/eldritch.nvim", name = "eldritch", - lazy = false, + lazy = true, -- Let Themery manage loading priority = 1000, opts = {}, config = function() @@ -138,7 +138,7 @@ return { { "olimorris/onedarkpro.nvim", name = "onedarkpro", - lazy = false, + lazy = true, -- Let Themery manage loading priority = 1000, }, @@ -146,7 +146,7 @@ return { { "cpea2506/one_monokai.nvim", name = "one_monokai", - lazy = false, + lazy = true, -- Let Themery manage loading priority = 1000, opts = {}, config = function() @@ -192,7 +192,7 @@ return { { "neko-night/nvim", priority = 1000, - lazy = false, + lazy = true, -- Let Themery manage loading config = function() end, }, @@ -259,7 +259,7 @@ return { { "gmr458/vscode_modern_theme.nvim", name = "vscode_modern", - lazy = false, + lazy = true, -- Let Themery manage loading priority = 1000, config = function() require("vscode_modern").setup({ From 2a84b9778b198b783768728e14dc1564e5f7d580 Mon Sep 17 00:00:00 2001 From: redjax <5534031+redjax@users.noreply.github.com> Date: Mon, 22 Sep 2025 13:43:21 -0400 Subject: [PATCH 2/2] fix(themes): Make aura theme load lazily --- config/nvim-lazyvim/lua/plugins/themes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/nvim-lazyvim/lua/plugins/themes.lua b/config/nvim-lazyvim/lua/plugins/themes.lua index cfd77d8..82676a0 100644 --- a/config/nvim-lazyvim/lua/plugins/themes.lua +++ b/config/nvim-lazyvim/lua/plugins/themes.lua @@ -3,8 +3,8 @@ return { { "daltonmenezes/aura-theme", name = "aura-theme", - lazy = true, -- Let Themery manage loading - priority = 1000, + lazy = false, -- Must load immediately for special rtp setup + priority = 999, -- Load before Themery but allow themes to be available config = function(plugin) vim.opt.rtp:append(plugin.dir .. "/packages/neovim") end