dotfiles/.config/nvim/lua/plugins/catppuccin.lua
2023-11-01 17:33:17 +01:00

71 lines
1.8 KiB
Lua

return {
{
"catppuccin/nvim",
lazy = true,
name = "catppuccin",
opts = {
integrations = {
alpha = true,
cmp = true,
barbecue = {
dim_dirname = true, -- directory name is dimmed by default
bold_basename = true,
dim_context = false,
alt_background = false,
},
dap = {
enabled = true,
enable_ui = true, -- enable nvim-dap-ui
},
flash = true,
headlines = true,
gitsigns = true,
illuminate = true,
indent_blankline = {
enabled = true,
scope_color = "lavender", -- catppuccin color (eg. `lavender`) Default: text
colored_indent_levels = false,
},
mason = true,
markdown = true,
mini = true,
native_lsp = {
enabled = true,
virtual_text = {
errors = { "italic" },
hints = { "italic" },
warnings = { "italic" },
information = { "italic" },
},
underlines = {
errors = { "underline" },
hints = { "underline" },
warnings = { "underline" },
information = { "underline" },
},
inlay_hints = {
background = true,
},
},
navic = { enabled = false, custom_bg = "lualine" },
neotest = true,
neotree = true,
notify = true,
noice = true,
ufo = true,
overseer = true,
octo = true,
rainbow_delimiters = true,
semantic_tokens = true,
telescope = {
enabled = true,
-- style = "nvchad",
},
symbols_outline = false,
treesitter = true,
treesitter_context = true,
which_key = true,
},
},
},
}