Added config for catppuccin
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
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