Skip to content

Commit 12c004c

Browse files
feat(snacks): use overlay2 as default indent_scope_color (#975)
1 parent c4d475e commit 12c004c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1501,7 +1501,7 @@ render_markdown = true
15011501
```lua
15021502
snacks = {
15031503
enabled = false,
1504-
indent_scope_color = "", -- catppuccin color (eg. `lavender`) Default: text
1504+
indent_scope_color = "", -- catppuccin color (eg. `lavender`) Default: overlay2
15051505
}
15061506
```
15071507

doc/catppuccin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ render-markdown.nvim>lua
912912
snacks.nvim>lua
913913
snacks = {
914914
enabled = false,
915-
indent_scope_color = "", -- catppuccin color (eg. `lavender`) Default: text
915+
indent_scope_color = "", -- catppuccin color (eg. `lavender`) Default: overlay2
916916
}
917917
<
918918

lua/catppuccin/groups/integrations/snacks.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function M.get()
5151
SnacksDashboardTitle = { link = "Title" },
5252

5353
SnacksIndent = { fg = C.surface0 },
54-
SnacksIndentScope = { fg = C[indent_scope_color] or C.text },
54+
SnacksIndentScope = { fg = C[indent_scope_color] or C.overlay2 },
5555

5656
SnacksPickerSelected = {
5757
fg = O.float.transparent and C.flamingo or C.text,

0 commit comments

Comments
 (0)