fix(treesitter): highlight paths in .gitignore as text (#736)

* fix(treesitter): highlight wildcards in .gitignore differently

* fix(treesitter): color paths in `.gitignore` as mauve

* fix(treesitter): color paths in `.gitignore` as text
This commit is contained in:
Vollow 2024-07-25 19:36:09 +08:00 committed by GitHub
parent 07f1ee8613
commit 4374588df4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -195,6 +195,9 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci
-- gitcommit
["@comment.warning.gitcommit"] = { fg = C.yellow },
-- gitignore
["@string.special.path.gitignore"] = { fg = C.text },
-- Misc
gitcommitSummary = { fg = C.rosewater, style = O.styles.miscs or { "italic" } },
zshKSHFunction = { link = "Function" },