14 lines
431 B
Lua
14 lines
431 B
Lua
-- Set custom name to the list
|
|
require("themery").setup({
|
|
themes = { {
|
|
name = "Day",
|
|
colorscheme = "catppuccin-latte",
|
|
},
|
|
{
|
|
name = "Night",
|
|
colorscheme = "catppuccin-mocha",
|
|
} },
|
|
themeConfigFile = "~/.config/nvim/lua/config/theme.lua", -- Desibed below
|
|
livePreview = true, -- Apply theme while browsing. Default to true.
|
|
})
|