adding catppuchin theme

This commit is contained in:
SALVI Jérémie
2024-08-17 05:37:58 +02:00
parent 3cd1c8f79f
commit cd2fe7b3c6
2 changed files with 29 additions and 0 deletions

24
lua/config/catppuchin.lua Normal file
View File

@@ -0,0 +1,24 @@
--- 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")