diff options
author | awy <awy@awy.one> | 2025-10-18 00:10:58 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-10-18 00:10:58 +0300 |
commit | abf932d721142a35e01a57ab9187ca35896cb237 (patch) | |
tree | 2cce67586b1792f33fd703072673b2a0767b473e /.config/nvim/lua/plugins/theme.lua | |
parent | de009fd679e10d053fdcc10785f91ad5317449ea (diff) | |
download | hyprdots-abf932d721142a35e01a57ab9187ca35896cb237.tar.gz |
revert
Diffstat (limited to '.config/nvim/lua/plugins/theme.lua')
-rw-r--r-- | .config/nvim/lua/plugins/theme.lua | 34 |
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..f17e13f --- /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 +} |