diff options
| author | awy <awy@awy.one> | 2025-11-20 19:56:37 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-20 19:56:37 +0300 |
| commit | e27ba614e9f1bceaae280c94e829a49252f674ed (patch) | |
| tree | 439d94c43f88b8ee5c72808064062121a54a37d3 /.config/nvim/lua/plugins/theme.lua | |
| parent | d3a9369559ba3f62ea45ebde6761aaef93d40f57 (diff) | |
| download | hyprdots-e27ba614e9f1bceaae280c94e829a49252f674ed.tar.gz | |
wwwwwwwwasuppppppppp
Diffstat (limited to '.config/nvim/lua/plugins/theme.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/theme.lua | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua index f372b17..06b0133 100644 --- a/.config/nvim/lua/plugins/theme.lua +++ b/.config/nvim/lua/plugins/theme.lua @@ -1,15 +1,38 @@ return { { - "ellisonleao/gruvbox.nvim", + "neanias/everforest-nvim", priority = 1000, config = function() - require("gruvbox").setup({ - transparent_mode = true, - overrides = { - CursorLineNr = {bg = ""} - } - }) - vim.cmd.colorscheme "gruvbox" + vim.cmd.colorscheme "everforest" end } } + +-- return { +-- { +-- "ellisonleao/gruvbox.nvim", +-- priority = 1000, +-- config = function() +-- require("gruvbox").setup({ +-- transparent_mode = true, +-- overrides = { +-- CursorLineNr = {bg = ""} +-- } +-- }) +-- vim.cmd.colorscheme "gruvbox" +-- end +-- } +-- } +-- +-- return { +-- { +-- "catppuccin/nvim", +-- priority = 1000, +-- config = function() +-- require("catppuccin").setup({ +-- transparent_background = true, +-- }) +-- vim.cmd.colorscheme "catppuccin" +-- end +-- } +-- } |