Skip to content

Commit

Permalink
feat(integrations): update mini.indentscope (#821)
Browse files Browse the repository at this point in the history
* chore(mini.indentscope): remove deprecated highlight

MiniIndentscopePrefix is deprecated since v0.7.0.
See echasnovski/mini.indentscope@87f8fbb

* fix(mini.indentscope): use correct symbol default highlight

The mini.indentscope plugin links the MiniIndentscopeSymbol to Delimiter
by default which is overlay2
  • Loading branch information
geodimm authored Feb 12, 2025
1 parent be45e04 commit 0b2437b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lua/catppuccin/groups/integrations/mini.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ function M.get()
MiniIconsRed = { fg = C.red },
MiniIconsYellow = { fg = C.yellow },

MiniIndentscopeSymbol = { fg = C[indentscope_color] or C.text },
MiniIndentscopePrefix = { style = { "nocombine" } }, -- Make it invisible
MiniIndentscopeSymbol = { fg = C[indentscope_color] or C.overlay2 },

MiniJump = { fg = C.overlay2, bg = C.pink },

Expand Down
2 changes: 1 addition & 1 deletion lua/catppuccin/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ local M = {
},
mini = {
enabled = true,
indentscope_color = "text",
indentscope_color = "overlay2",
},
},
color_overrides = {},
Expand Down

0 comments on commit 0b2437b

Please sign in to comment.