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