Files
nvim/lua/config/catppuchin.lua
2024-08-17 05:37:58 +02:00

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")