themes
This commit is contained in:
parent
2386de2158
commit
79d6a52c9c
1 changed files with 31 additions and 0 deletions
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue