diff options
| author | awy <awy@awy.one> | 2025-10-09 03:59:15 +0300 | 
|---|---|---|
| committer | awy <awy@awy.one> | 2025-10-09 03:59:15 +0300 | 
| commit | 70fd3c251fe5d459d655979c2f228f35b4400f48 (patch) | |
| tree | 1bde550fab7231ee051e25c94a3aecda3d3068e9 /.config/nvim/lua/plugins/theme.lua | |
| parent | 5f4937b401aad55ad32e85a1cfa408d9e3b631d2 (diff) | |
| download | hyprdots-70fd3c251fe5d459d655979c2f228f35b4400f48.tar.gz | |
up
Diffstat (limited to '.config/nvim/lua/plugins/theme.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/theme.lua | 32 | 
1 files changed, 16 insertions, 16 deletions
diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua index 1ee6031..7d5e807 100644 --- a/.config/nvim/lua/plugins/theme.lua +++ b/.config/nvim/lua/plugins/theme.lua @@ -10,25 +10,25 @@  --   end  -- } -return { -  'catppuccin/nvim', -  lazy = false, -  priority = 1000, -  config = function() -    require("catppuccin").setup({ -      transparent_background = true -    }) -    vim.cmd.colorscheme('catppuccin') -  end -} -  -- return { ---   'sainnhe/everforest', +--   'catppuccin/nvim',  --   lazy = false,  --   priority = 1000,  --   config = function() ---     vim.g.everforest_enable_italic = true ---     vim.g.everforest_transparent_background = true ---     vim.cmd.colorscheme('everforest') +--     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 +}  |