21 lines
449 B
Lua
21 lines
449 B
Lua
return { "catppuccin/nvim", name = "catppuccin", priority = 1000,
|
|
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "mocha",
|
|
transparent_background = true,
|
|
background = {
|
|
light = "latte",
|
|
dark = "mocha",
|
|
},
|
|
float = {
|
|
transparent = false,-- enable transparent floating windows
|
|
},
|
|
auto_integrations = true,
|
|
})
|
|
|
|
-- setup must be called before loading
|
|
vim.cmd.colorscheme "catppuccin"
|
|
end
|
|
}
|