nvim/lua/plugins/catppuccin.lua

34 lines
898 B
Lua
Raw Normal View History

return {
"catppuccin/nvim",
cond = not vim.g.vscode,
name = "catppuccin",
lazy = true,
config = true,
opts = {
flavour = "macchiato",
term_colors = true,
transparent_background = true,
integrations = {
alpha = true,
barbar = true,
gitsigns = true,
hop = true,
indent_blankline = { enabled = true, colored_indent_levels = true },
cmp = true,
markdown = true,
mini = true,
native_lsp = { enabled = true },
neogit = true,
neotree = true,
noice = true,
notify = true,
navic = { enabled = true },
treesitter = true,
treesitter_context = true,
telescope = true,
lsp_trouble = true,
which_key = true,
},
},
}