aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/theme.lua
diff options
context:
space:
mode:
authorawy <awy@awy.one>2025-10-07 12:38:25 +0300
committerawy <awy@awy.one>2025-10-07 12:38:25 +0300
commita03c46857589ca9eb5e941a0723fc3dd1b04505f (patch)
tree429703c3b62f9bebd7f92602b329ef4a074e109b /.config/nvim/lua/plugins/theme.lua
parent78b55a2e6f631bc6aab5b91c5183f6b02fadde24 (diff)
downloadhyprdots-a03c46857589ca9eb5e941a0723fc3dd1b04505f.tar.gz
theme
Diffstat (limited to '.config/nvim/lua/plugins/theme.lua')
-rw-r--r--.config/nvim/lua/plugins/theme.lua34
1 files changed, 34 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua
new file mode 100644
index 0000000..1ee6031
--- /dev/null
+++ b/.config/nvim/lua/plugins/theme.lua
@@ -0,0 +1,34 @@
+-- return {
+-- 'ellisonleao/gruvbox.nvim',
+-- lazy = false,
+-- priority = 1000,
+-- config = function()
+-- require("gruvbox").setup({
+-- transparent_mode = true
+-- })
+-- vim.cmd.colorscheme('gruvbox')
+-- end
+-- }
+
+return {
+ 'catppuccin/nvim',
+ lazy = false,
+ priority = 1000,
+ config = function()
+ require("catppuccin").setup({
+ transparent_background = true
+ })
+ vim.cmd.colorscheme('catppuccin')
+ end
+}
+
+-- return {
+-- 'sainnhe/everforest',
+-- lazy = false,
+-- priority = 1000,
+-- config = function()
+-- vim.g.everforest_enable_italic = true
+-- vim.g.everforest_transparent_background = true
+-- vim.cmd.colorscheme('everforest')
+-- end
+-- }