From 238882ae45aef174d1a5be6a1d30813227d2f223 Mon Sep 17 00:00:00 2001 From: rootiest Date: Fri, 12 Jul 2024 20:04:03 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Theme=20!=3D=20Lazy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Don't lazy-load themes - No speed benefit - Allows proper autocomplete of colorscheme names --- lua/themes/dracula.lua | 1 - lua/themes/github-theme.lua | 1 - lua/themes/gruvbox.lua | 1 - lua/themes/kanagawa.lua | 1 - lua/themes/neofusion.lua | 1 - lua/themes/nord.lua | 1 - lua/themes/one-dark-pro.lua | 1 - lua/themes/oxocarbon.lua | 1 - lua/themes/rose-pine.lua | 1 - lua/themes/umbra.lua | 1 - 10 files changed, 10 deletions(-) diff --git a/lua/themes/dracula.lua b/lua/themes/dracula.lua index c2569ae..7694ecb 100644 --- a/lua/themes/dracula.lua +++ b/lua/themes/dracula.lua @@ -3,5 +3,4 @@ -- ----------------------------------------------------------------------------- return { "Mofiqul/dracula.nvim", - lazy = true, } \ No newline at end of file diff --git a/lua/themes/github-theme.lua b/lua/themes/github-theme.lua index bc5607b..680e940 100644 --- a/lua/themes/github-theme.lua +++ b/lua/themes/github-theme.lua @@ -3,5 +3,4 @@ -- ----------------------------------------------------------------------------- return { "projekt0n/github-nvim-theme", - lazy = true, } diff --git a/lua/themes/gruvbox.lua b/lua/themes/gruvbox.lua index 29c57f0..4076712 100644 --- a/lua/themes/gruvbox.lua +++ b/lua/themes/gruvbox.lua @@ -1,4 +1,3 @@ return { "ellisonleao/gruvbox.nvim", - lazy = true, } diff --git a/lua/themes/kanagawa.lua b/lua/themes/kanagawa.lua index b64c4e7..7c0fead 100644 --- a/lua/themes/kanagawa.lua +++ b/lua/themes/kanagawa.lua @@ -3,5 +3,4 @@ -- ----------------------------------------------------------------------------- return { "rebelot/kanagawa.nvim", - lazy = true, } diff --git a/lua/themes/neofusion.lua b/lua/themes/neofusion.lua index 74b7e29..d56e2ac 100644 --- a/lua/themes/neofusion.lua +++ b/lua/themes/neofusion.lua @@ -1,4 +1,3 @@ return { "diegoulloao/neofusion.nvim", - lazy = true, } diff --git a/lua/themes/nord.lua b/lua/themes/nord.lua index 2a2ae85..a3643e6 100644 --- a/lua/themes/nord.lua +++ b/lua/themes/nord.lua @@ -3,5 +3,4 @@ -- ----------------------------------------------------------------------------- return { "shaunsingh/nord.nvim", - lazy = true, } diff --git a/lua/themes/one-dark-pro.lua b/lua/themes/one-dark-pro.lua index d609698..4e5c28d 100644 --- a/lua/themes/one-dark-pro.lua +++ b/lua/themes/one-dark-pro.lua @@ -3,5 +3,4 @@ -- ----------------------------------------------------------------------------- return { "olimorris/onedarkpro.nvim", - lazy = true, } diff --git a/lua/themes/oxocarbon.lua b/lua/themes/oxocarbon.lua index e314ab3..ecc5c1a 100644 --- a/lua/themes/oxocarbon.lua +++ b/lua/themes/oxocarbon.lua @@ -1,4 +1,3 @@ return { "nyoom-engineering/oxocarbon.nvim", - lazy = true, } diff --git a/lua/themes/rose-pine.lua b/lua/themes/rose-pine.lua index 247e87b..b3725e5 100644 --- a/lua/themes/rose-pine.lua +++ b/lua/themes/rose-pine.lua @@ -4,5 +4,4 @@ return { "rose-pine/neovim", name = "rose-pine", - lazy = true, } diff --git a/lua/themes/umbra.lua b/lua/themes/umbra.lua index bf17bcf..f2fb85c 100644 --- a/lua/themes/umbra.lua +++ b/lua/themes/umbra.lua @@ -3,5 +3,4 @@ -- ----------------------------------------------------------------------------- return { "LZDQ/umbra.nvim", - lazy = true, }