Added config for catppuccin

This commit is contained in:
2023-08-30 14:54:05 +02:00
parent 3d93ff9aba
commit f3d34ca3d1
2 changed files with 195 additions and 184 deletions

View File

@@ -124,7 +124,7 @@ local plugins = {
vim.cmd([[ vim.cmd([[
let g:gitblame_enabled = 1 let g:gitblame_enabled = 1
]]) ]])
end end,
}, },
-- useful plugins -- useful plugins
{ {
@@ -163,7 +163,7 @@ local plugins = {
{ {
"akinsho/bufferline.nvim", "akinsho/bufferline.nvim",
version = "*", version = "*",
dependencies = "nvim-tree/nvim-web-devicons" dependencies = "nvim-tree/nvim-web-devicons",
}, },
"TakenMC/presence.nvim", "TakenMC/presence.nvim",
{ {
@@ -197,7 +197,7 @@ local opts = {
}, },
checker = { checker = {
enabled = true, enabled = true,
} },
} }
lazy.setup(plugins, opts) lazy.setup(plugins, opts)

View File

@@ -0,0 +1,11 @@
local status, catppuccin = pcall(require, "catppuccin")
if not status then
return
end
catppuccin.setup({
integrations = {
notify = true,
mason = true,
}
})