25 lines
389 B
Lua
25 lines
389 B
Lua
--- Ensure plugin is avaiable
|
|
local ok, catppuchin = pcall(require, "catppuccin")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
local opts = {
|
|
flavour = "frappe",
|
|
integrations = {
|
|
cmp = true,
|
|
gitsigns = true,
|
|
nvimtree = true,
|
|
treesitter = true,
|
|
notify = false,
|
|
mini = {
|
|
enabled = true,
|
|
indentscope_color = "",
|
|
},
|
|
},
|
|
}
|
|
|
|
catppuchin.setup(opts)
|
|
|
|
vim.cmd.colorscheme("catppuccin-frappe")
|