Added config for catppuccin
This commit is contained in:
@@ -124,7 +124,7 @@ local plugins = {
|
||||
vim.cmd([[
|
||||
let g:gitblame_enabled = 1
|
||||
]])
|
||||
end
|
||||
end,
|
||||
},
|
||||
-- useful plugins
|
||||
{
|
||||
@@ -163,7 +163,7 @@ local plugins = {
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
version = "*",
|
||||
dependencies = "nvim-tree/nvim-web-devicons"
|
||||
dependencies = "nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
"TakenMC/presence.nvim",
|
||||
{
|
||||
@@ -197,7 +197,7 @@ local opts = {
|
||||
},
|
||||
checker = {
|
||||
enabled = true,
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
lazy.setup(plugins, opts)
|
||||
|
||||
11
lua/taken/plugins/catppuccin.lua
Normal file
11
lua/taken/plugins/catppuccin.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
local status, catppuccin = pcall(require, "catppuccin")
|
||||
if not status then
|
||||
return
|
||||
end
|
||||
|
||||
catppuccin.setup({
|
||||
integrations = {
|
||||
notify = true,
|
||||
mason = true,
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user