Merge branch 'main' into dev

This commit is contained in:
chuyanlong 2025-09-26 13:33:22 +08:00
commit 9c17f79524
2 changed files with 10 additions and 14 deletions

View file

@ -1,4 +1,4 @@
*LazyVim.txt* For Neovim Last change: 2025 September 25
*LazyVim.txt* For Neovim Last change: 2025 September 26
==============================================================================
Table of Contents *LazyVim-table-of-contents*

View file

@ -13,6 +13,14 @@ return {
lazy = true,
name = "catppuccin",
opts = {
lsp_styles = {
underlines = {
errors = { "undercurl" },
hints = { "undercurl" },
warnings = { "undercurl" },
information = { "undercurl" },
},
},
integrations = {
aerial = true,
alpha = true,
@ -28,26 +36,14 @@ return {
leap = true,
lsp_trouble = true,
mason = true,
markdown = true,
mini = true,
native_lsp = {
enabled = true,
underlines = {
errors = { "undercurl" },
hints = { "undercurl" },
warnings = { "undercurl" },
information = { "undercurl" },
},
},
navic = { enabled = true, custom_bg = "lualine" },
neotest = true,
neotree = true,
noice = true,
notify = true,
semantic_tokens = true,
snacks = true,
telescope = true,
treesitter = true,
treesitter_context = true,
which_key = true,
},
@ -58,7 +54,7 @@ return {
optional = true,
opts = function(_, opts)
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,
},