fix(catppuccin): follow-up on api change (#6505)

## Description

https://github.com/catppuccin/nvim/pull/931 will change the api for
accessing the bufferline integration. im making this follow up pr so it
wont have to be done through a user :)
(sorry about https://github.com/LazyVim/LazyVim/pull/6354)

## Checklist

- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
This commit is contained in:
robin
2025-09-26 06:36:14 +02:00
committed by GitHub
parent c83df9e68d
commit af6e2505b5

View File

@@ -13,6 +13,14 @@ return {
lazy = true, lazy = true,
name = "catppuccin", name = "catppuccin",
opts = { opts = {
lsp_styles = {
underlines = {
errors = { "undercurl" },
hints = { "undercurl" },
warnings = { "undercurl" },
information = { "undercurl" },
},
},
integrations = { integrations = {
aerial = true, aerial = true,
alpha = true, alpha = true,
@@ -28,26 +36,14 @@ return {
leap = true, leap = true,
lsp_trouble = true, lsp_trouble = true,
mason = true, mason = true,
markdown = true,
mini = true, mini = true,
native_lsp = {
enabled = true,
underlines = {
errors = { "undercurl" },
hints = { "undercurl" },
warnings = { "undercurl" },
information = { "undercurl" },
},
},
navic = { enabled = true, custom_bg = "lualine" }, navic = { enabled = true, custom_bg = "lualine" },
neotest = true, neotest = true,
neotree = true, neotree = true,
noice = true, noice = true,
notify = true, notify = true,
semantic_tokens = true,
snacks = true, snacks = true,
telescope = true, telescope = true,
treesitter = true,
treesitter_context = true, treesitter_context = true,
which_key = true, which_key = true,
}, },
@@ -58,7 +54,7 @@ return {
optional = true, optional = true,
opts = function(_, opts) opts = function(_, opts)
if (vim.g.colors_name or ""):find("catppuccin") then if (vim.g.colors_name or ""):find("catppuccin") then
opts.highlights = require("catppuccin.groups.integrations.bufferline").get_theme() opts.highlights = require("catppuccin.special.bufferline").get_theme()
end end
end, end,
}, },