fix(theme): disable catppuccin

This commit is contained in:
Oliver Ladner 2025-08-26 11:53:59 +02:00
commit 841d801c99

View file

@ -1,59 +1,59 @@
return { return {
"catppuccin/nvim", "catppuccin/nvim",
name = "catppuccin", name = "catppuccin",
tag = "stable", tag = "stable",
lazy = false, lazy = false,
enabled = true, enabled = false,
priority = 1000, priority = 1000,
opts = {}, opts = {},
config = function() config = function()
require("catppuccin").setup({ require("catppuccin").setup({
flavour = "auto", -- latte, frappe, macchiato, mocha flavour = "auto", -- latte, frappe, macchiato, mocha
background = { -- :h background background = { -- :h background
light = "latte", light = "latte",
dark = "mocha", dark = "mocha",
}, },
transparent_background = false, -- disables setting the background color. transparent_background = false, -- disables setting the background color.
show_end_of_buffer = false, -- shows the '~' characters after the end of buffers show_end_of_buffer = false, -- shows the '~' characters after the end of buffers
term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`) term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`)
dim_inactive = { dim_inactive = {
enabled = false, -- dims the background color of inactive window enabled = false, -- dims the background color of inactive window
shade = "dark", shade = "dark",
percentage = 0.15, -- percentage of the shade to apply to the inactive window percentage = 0.15, -- percentage of the shade to apply to the inactive window
}, },
no_italic = false, -- Force no italic no_italic = false, -- Force no italic
no_bold = false, -- Force no bold no_bold = false, -- Force no bold
no_underline = false, -- Force no underline no_underline = false, -- Force no underline
styles = { -- Handles the styles of general hi groups (see `:h highlight-args`): styles = { -- Handles the styles of general hi groups (see `:h highlight-args`):
comments = { "italic" }, -- Change the style of comments comments = { "italic" }, -- Change the style of comments
conditionals = { "italic" }, conditionals = { "italic" },
loops = {}, loops = {},
functions = {}, functions = {},
keywords = {}, keywords = {},
strings = {}, strings = {},
variables = {}, variables = {},
numbers = {}, numbers = {},
booleans = {}, booleans = {},
properties = {}, properties = {},
types = {}, types = {},
operators = {}, operators = {},
-- miscs = {}, -- Uncomment to turn off hard-coded styles -- miscs = {}, -- Uncomment to turn off hard-coded styles
}, },
color_overrides = {}, color_overrides = {},
custom_highlights = {}, custom_highlights = {},
default_integrations = true, default_integrations = true,
integrations = { integrations = {
cmp = true, cmp = true,
gitsigns = true, gitsigns = true,
nvimtree = true, nvimtree = true,
treesitter = true, treesitter = true,
notify = false, notify = false,
mini = { mini = {
enabled = true, enabled = true,
indentscope_color = "", indentscope_color = "",
}, },
-- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations) -- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
}, },
}) })
end, end,
} }