neovim-confs/lua/custom/plugins/themes.lua

123 lines
3.5 KiB
Lua
Raw Permalink Normal View History

2024-07-04 19:03:42 +02:00
return {
{
'zaldih/themery.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
2024-07-04 19:23:32 +02:00
cmd = 'Themery',
keys = {
{ ';ft', '<cmd> Themery <cr>', desc = '[F]ind [T]heme' },
},
2024-07-04 19:03:42 +02:00
init = function()
require 'settings.theme'
end,
config = function()
require('themery').setup {
themes = {
2024-07-05 22:01:35 +02:00
-- Dark Themes
2024-07-04 19:03:42 +02:00
{
2024-07-05 22:01:35 +02:00
name = '==========Dark Themes==========',
2024-07-05 22:09:16 +02:00
colorscheme = '', -- this actually keeps the selected theme, but it wont work with persistence
},
{
name = 'nvim default',
colorscheme = 'default',
},
{
name = 'nvim lunaperche',
colorscheme = 'lunaperche',
},
{
name = 'nvim quiet',
colorscheme = 'quiet',
},
{
name = 'nvim retrobox',
colorscheme = 'retrobox',
},
{
name = 'nvim slate',
colorscheme = 'slate',
},
{
name = 'nvim vim',
colorscheme = 'vim',
2024-07-04 19:03:42 +02:00
},
{
2024-07-05 22:01:35 +02:00
name = 'tokyonight',
colorscheme = 'tokyonight',
2024-07-04 19:03:42 +02:00
},
{
name = 'tokyonight-moon',
colorscheme = 'tokyonight-moon',
},
{
name = 'tokyonight-storm',
colorscheme = 'tokyonight-storm',
},
2024-07-04 19:31:51 +02:00
{
name = 'kanagawa',
colorscheme = 'kanagawa',
},
{
name = 'kanagawa-dragon',
colorscheme = 'kanagawa-dragon',
},
{
name = 'kanagawa-wave',
colorscheme = 'kanagawa-wave',
},
2024-07-08 11:12:19 +02:00
{
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"
]],
},
2024-07-05 22:01:35 +02:00
-- Light themes
{
name = '==========Light Themes==========',
2024-07-05 22:09:16 +02:00
colorscheme = '', -- this actually keeps the selected theme, but it wont work with persistence
2024-07-05 22:01:35 +02:00
},
{
name = 'tokyonight-day',
colorscheme = 'tokyonight-day',
},
{
name = 'kanagawa-lotus',
colorscheme = 'kanagawa-lotus',
},
2024-07-08 11:12:19 +02:00
{
name = 'zenbones',
colorscheme = 'zenbones',
before = [[
-- It's a major hack from the themery guys that this is a string
vim.opt.background = "light"
]],
},
2024-07-04 19:03:42 +02:00
},
themeConfigFile = '~/.config/nvim/lua/settings/theme.lua',
livePreview = true, -- Apply theme while browsing. Default to true.
}
end,
},
2024-07-04 19:31:51 +02:00
'folke/tokyonight.nvim',
'rebelot/kanagawa.nvim',
2024-07-08 11:12:19 +02:00
{ 'zenbones-theme/zenbones.nvim', dependencies = { 'rktjmp/lush.nvim' } },
2024-07-04 19:03:42 +02:00
}