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

35 lines
892 B
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.
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',
},
},
themeConfigFile = '~/.config/nvim/lua/settings/theme.lua',
livePreview = true, -- Apply theme while browsing. Default to true.
}
end,
},
{ 'folke/tokyonight.nvim' },
}