jones-nvim-config/lua/config/themery.lua

20 lines
425 B
Lua
Raw Normal View History

2024-04-07 03:14:14 +00:00
-- Set custom name to the list
require("themery").setup({
themes = {
{
name = "Day",
colorscheme = "catppuccin-latte",
},
-- {
-- name = "Afternoon",
-- colorscheme = "nvim-grey",
-- },
{
name = "Night",
colorscheme = "catppuccin-mocha",
},
},
themeConfigFile = "~/.config/nvim/lua/config/theme.lua", -- Desibed below
livePreview = true, -- Apply theme while browsing. Default to true.
2024-04-07 03:14:14 +00:00
})