From a03c46857589ca9eb5e941a0723fc3dd1b04505f Mon Sep 17 00:00:00 2001 From: awy Date: Tue, 7 Oct 2025 12:38:25 +0300 Subject: theme --- .config/nvim/lua/plugins/gruvbox.lua | 22 ---------------------- .config/nvim/lua/plugins/theme.lua | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 22 deletions(-) delete mode 100644 .config/nvim/lua/plugins/gruvbox.lua create mode 100644 .config/nvim/lua/plugins/theme.lua (limited to '.config') diff --git a/.config/nvim/lua/plugins/gruvbox.lua b/.config/nvim/lua/plugins/gruvbox.lua deleted file mode 100644 index 3c07cb6..0000000 --- a/.config/nvim/lua/plugins/gruvbox.lua +++ /dev/null @@ -1,22 +0,0 @@ -return { - 'ellisonleao/gruvbox.nvim', - lazy = false, - priority = 1000, - config = function() - require("gruvbox").setup({ - transparent_mode = true - }) - vim.cmd.colorscheme('gruvbox') - 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 --- } 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 +-- } -- cgit v1.2.3