This commit is contained in:
cscherr 2025-05-08 13:27:52 +02:00
parent 2386de2158
commit 79d6a52c9c
Signed by: cscherrNT
GPG key ID: 8E2B45BC51A27EA7

View file

@ -76,6 +76,12 @@ the_themes = {
vim.opt.background = "dark"
]],
},
'catppuccin-frappe',
'catppuccin-macchiato',
'catppuccin-mocha',
'rose-pine-main',
'rose-pine-moon',
'cyberdream',
-- Light themes
{
name = '==========Light Themes==========',
@ -97,6 +103,9 @@ the_themes = {
vim.opt.background = "light"
]],
},
'catppuccin-latte',
'rose-pine-dawn',
'cyberdream-light',
}
return {
@ -117,4 +126,26 @@ return {
'folke/tokyonight.nvim',
'rebelot/kanagawa.nvim',
{ 'zenbones-theme/zenbones.nvim', dependencies = { 'rktjmp/lush.nvim' } },
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
{ 'rose-pine/neovim', name = 'rose-pine' },
{
'scottmckendry/cyberdream.nvim',
setup = function()
require('cyberdream').setup {
-- Enable transparent background
transparent = true,
italic_comments = false,
-- Replace all fillchars with ' ' for the ultimate clean look
hide_fillchars = false,
borderless_pickers = true,
terminal_colors = true,
cache = true,
extensions = {
telescope = true,
notify = true,
mini = true,
},
}
end,
},
}