From 0727aaf1333bac5bd0a6e4d2ac99380a6cd56c4c Mon Sep 17 00:00:00 2001 From: rootiest Date: Fri, 19 Jul 2024 20:39:49 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A4=20Don't=20Lazy-load=20themes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Override the default lazy=true for catppuccin and tokyonight --- lua/plugins/themes.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lua/plugins/themes.lua b/lua/plugins/themes.lua index 3b7c0e0..5b35794 100644 --- a/lua/plugins/themes.lua +++ b/lua/plugins/themes.lua @@ -3,6 +3,14 @@ -- ----------------------------------------------------------------------------- return { + { + "folke/tokyonight.nvim", + lazy = false, -- Override + }, + { + "catppuccin/nvim", + lazy = false, -- Override + }, { "Shatur/neovim-ayu", },