Skip to content

Commit acc94b8

Browse files
authored
Merge pull request #242 from loicreynier/feat/snacks.indent
feat: add support for Snacks.indent
2 parents 4d1c3c6 + a9809db commit acc94b8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ vscode.nvim (formerly `codedark.nvim`) is a Lua port of [vim-code-dark](https://
2626
- [vim-illuminate](https://github.com/RRethy/vim-illuminate)
2727
- [rainbow-delimiters](https://gitlab.com/HiPhish/rainbow-delimiters.nvim)
2828
- [which-key](https://github.com/folke/which-key.nvim)
29+
- [Snacks.indent](https://github.com/folke/snacks.nvim/blob/main/docs/indent.md)
2930

3031
## ⬇️ Installation
3132

lua/vscode/theme.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,10 @@ theme.set_highlights = function(opts)
538538
hl(0, 'IblWhitespace', { fg = c.vscContext, bg = 'NONE', nocombine = true })
539539
hl(0, 'IblScope', { fg = c.vscContextCurrent, bg = 'NONE', nocombine = true })
540540

541+
-- Snacks.indent
542+
hl(0, 'SnacksIndent', { fg = c.vscContext, bg = 'NONE', nocombine = true })
543+
hl(0, 'SnacksIndentScope', { fg = c.vscContextCurrent, bg = 'NONE', nocombine = true })
544+
541545
-- Neotest
542546
hl(0, 'NeotestAdapterName', { fg = c.vscFront, bold = true })
543547
hl(0, 'NeotestDir', { fg = c.vscBlue })

0 commit comments

Comments
 (0)