diff options
| author | Nicholas Hall <root@ngha.ro> | 2026-04-29 20:42:44 -0500 |
|---|---|---|
| committer | Nicholas Hall <root@ngha.ro> | 2026-04-29 20:42:44 -0500 |
| commit | b834788f7dc110e4a4f79b0356f1293d6d129b13 (patch) | |
| tree | bef6e26d08963096e192292c8d597d7f3301e2ba /lua/plugins/all-themes.lua | |
| parent | 7041a218d5cdcb6131697078e4422deb457c6cf0 (diff) | |
| download | nvim-b834788f7dc110e4a4f79b0356f1293d6d129b13.tar.xz nvim-b834788f7dc110e4a4f79b0356f1293d6d129b13.zip | |
Omarchy lazyvimlazyvim
Diffstat (limited to 'lua/plugins/all-themes.lua')
| -rw-r--r-- | lua/plugins/all-themes.lua | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/lua/plugins/all-themes.lua b/lua/plugins/all-themes.lua new file mode 100644 index 0000000..bff3343 --- /dev/null +++ b/lua/plugins/all-themes.lua @@ -0,0 +1,101 @@ +return { + -- Load all theme plugins but don't apply them + -- This ensures all colorschemes are available for hot-reloading + { + "ribru17/bamboo.nvim", + lazy = true, + priority = 1000, + }, + { + "bjarneo/aether.nvim", + lazy = true, + priority = 1000, + }, + { + "bjarneo/ethereal.nvim", + lazy = true, + priority = 1000, + }, + { + "bjarneo/hackerman.nvim", + lazy = true, + priority = 1000, + }, + { + "bjarneo/vantablack.nvim", + lazy = true, + priority = 1000, + }, + { + "bjarneo/white.nvim", + lazy = true, + priority = 1000, + }, + { + "catppuccin/nvim", + name = "catppuccin", + lazy = true, + priority = 1000, + }, + { + "sainnhe/everforest", + lazy = true, + priority = 1000, + }, + { + "kepano/flexoki-neovim", + lazy = true, + priority = 1000, + }, + { + "ellisonleao/gruvbox.nvim", + lazy = true, + priority = 1000, + }, + { + "rebelot/kanagawa.nvim", + lazy = true, + priority = 1000, + }, + { + "tahayvr/matteblack.nvim", + lazy = true, + priority = 1000, + }, + { + "loctvl842/monokai-pro.nvim", + lazy = true, + priority = 1000, + }, + { + "shaunsingh/nord.nvim", + lazy = true, + priority = 1000, + }, + { + "rose-pine/neovim", + name = "rose-pine", + lazy = true, + priority = 1000, + }, + { + "folke/tokyonight.nvim", + lazy = true, + priority = 1000, + }, + { + "OldJobobo/miasma.nvim", + lazy = true, + priority = 1000, + }, + { + "OldJobobo/retro-82.nvim", + lazy = true, + priority = 1000, + }, + { + "omacom-io/lumon.nvim", + lazy = true, + priority = 1000, + }, +} |
