update some plugin configuration

This commit is contained in:
Alexander Navarro 2024-11-22 12:52:48 -03:00
parent 82a3427e1b
commit ec617fabc2
6 changed files with 54 additions and 29 deletions

View file

@ -1,7 +1,7 @@
return { -- Change colors.none if not using a transparent background
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
lazy = false,
opts = {
flavour = "macchiato",
transparent_background = true,
@ -13,10 +13,10 @@ return { -- Change colors.none if not using a transparent background
mason = true,
neogit = true,
noice = true,
hop = true,
lsp_trouble = true,
indent_blankline = {
enabled = true,
scope_color = "text",
},
},
custom_highlights = function(colors)
@ -35,6 +35,6 @@ return { -- Change colors.none if not using a transparent background
config = function(_, opts)
require("catppuccin").setup(opts)
vim.cmd.colorscheme("catppuccin")
vim.cmd.colorscheme("catppuccin-macchiato")
end,
}