add more themes

This commit is contained in:
Christoph J. Scherr 2024-07-08 11:12:19 +02:00
parent 6bff5a9075
commit 80e3241a66
1 changed files with 33 additions and 0 deletions

View File

@ -65,6 +65,30 @@ return {
name = 'kanagawa-wave', name = 'kanagawa-wave',
colorscheme = 'kanagawa-wave', colorscheme = 'kanagawa-wave',
}, },
{
name = 'zenbones',
colorscheme = 'zenbones',
before = [[
-- It's a major hack from the themery guys that this is a string
vim.opt.background = "dark"
]],
},
{
name = 'tokyobones',
colorscheme = 'tokyobones',
before = [[
-- It's a major hack from the themery guys that this is a string
vim.opt.background = "dark"
]],
},
{
name = 'kanagawabones',
colorscheme = 'kanagawabones',
before = [[
-- It's a major hack from the themery guys that this is a string
vim.opt.background = "dark"
]],
},
-- Light themes -- Light themes
{ {
name = '==========Light Themes==========', name = '==========Light Themes==========',
@ -78,6 +102,14 @@ return {
name = 'kanagawa-lotus', name = 'kanagawa-lotus',
colorscheme = 'kanagawa-lotus', colorscheme = 'kanagawa-lotus',
}, },
{
name = 'zenbones',
colorscheme = 'zenbones',
before = [[
-- It's a major hack from the themery guys that this is a string
vim.opt.background = "light"
]],
},
}, },
themeConfigFile = '~/.config/nvim/lua/settings/theme.lua', themeConfigFile = '~/.config/nvim/lua/settings/theme.lua',
livePreview = true, -- Apply theme while browsing. Default to true. livePreview = true, -- Apply theme while browsing. Default to true.
@ -86,4 +118,5 @@ return {
}, },
'folke/tokyonight.nvim', 'folke/tokyonight.nvim',
'rebelot/kanagawa.nvim', 'rebelot/kanagawa.nvim',
{ 'zenbones-theme/zenbones.nvim', dependencies = { 'rktjmp/lush.nvim' } },
} }