Added config for catppuccin
This commit is contained in:
@@ -19,13 +19,13 @@ local plugins = {
|
|||||||
name = "catppuccin",
|
name = "catppuccin",
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
},
|
},
|
||||||
{ "folke/tokyonight.nvim", priority = 1000, lazy = true},
|
{ "folke/tokyonight.nvim", priority = 1000, lazy = true },
|
||||||
{ "Mofiqul/dracula.nvim", priority = 1000, lazy = true},
|
{ "Mofiqul/dracula.nvim", priority = 1000, lazy = true },
|
||||||
{ "roflolilolmao/oceanic-next.nvim", priority = 1000, lazy = true},
|
{ "roflolilolmao/oceanic-next.nvim", priority = 1000, lazy = true },
|
||||||
{ "olimorris/onedarkpro.nvim", priority = 1000, lazy = true},
|
{ "olimorris/onedarkpro.nvim", priority = 1000, lazy = true },
|
||||||
{ "NTBBloodbath/doom-one.nvim", priority = 1000, lazy = true},
|
{ "NTBBloodbath/doom-one.nvim", priority = 1000, lazy = true },
|
||||||
{ "shaunsingh/moonlight.nvim", priority = 1000, lazy = true},
|
{ "shaunsingh/moonlight.nvim", priority = 1000, lazy = true },
|
||||||
{ "kvrohit/mellow.nvim", priority = 1000, lazy = true},
|
{ "kvrohit/mellow.nvim", priority = 1000, lazy = true },
|
||||||
-- telescope
|
-- telescope
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
@@ -99,7 +99,7 @@ local plugins = {
|
|||||||
build = function()
|
build = function()
|
||||||
vim.fn["mkdp#util#install"]()
|
vim.fn["mkdp#util#install"]()
|
||||||
end,
|
end,
|
||||||
config = function ()
|
config = function()
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
let g:mkdp_auto_close = 0
|
let g:mkdp_auto_close = 0
|
||||||
let g:mkdp_theme = 'dark'
|
let g:mkdp_theme = 'dark'
|
||||||
@@ -120,11 +120,11 @@ local plugins = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"f-person/git-blame.nvim",
|
"f-person/git-blame.nvim",
|
||||||
config = function ()
|
config = function()
|
||||||
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