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

56 lines
1.4 KiB
Lua
Raw 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 = {
{
name = 'tokyonight',
colorscheme = 'tokyonight',
},
{
name = 'tokyonight-day',
colorscheme = 'tokyonight-day',
},
{
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-lotus',
colorscheme = 'kanagawa-lotus',
},
{
name = 'kanagawa-wave',
colorscheme = 'kanagawa-wave',
},
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-04 19:03:42 +02:00
}