adding catppuchin theme
This commit is contained in:
24
lua/config/catppuchin.lua
Normal file
24
lua/config/catppuchin.lua
Normal 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")
|
||||
5
lua/plugins/catppuchin.lua
Normal file
5
lua/plugins/catppuchin.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
priority = 1000,
|
||||
}
|
||||
Reference in New Issue
Block a user