diff options
author | Evgeni Chasnovski <evgeni.chasnovski@gmail.com> | 2024-03-19 12:26:03 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-03-21 09:01:37 +0100 |
commit | 734848dc1a9ebdf7af26cf54b92133cc6d94e19c (patch) | |
tree | f9deea007e23ca64cabbeffcdb258c709051c2a2 | |
parent | 45032a941d5b53b27558bfad18fa5e9e598d64db (diff) | |
download | rneovim-734848dc1a9ebdf7af26cf54b92133cc6d94e19c.tar.gz rneovim-734848dc1a9ebdf7af26cf54b92133cc6d94e19c.tar.bz2 rneovim-734848dc1a9ebdf7af26cf54b92133cc6d94e19c.zip |
feat(colorscheme): add semantic tokens modifiers to builtin color scheme
-rw-r--r-- | src/nvim/highlight_group.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/highlight_group.c b/src/nvim/highlight_group.c index f0c7e1aae6..f4800deb90 100644 --- a/src/nvim/highlight_group.c +++ b/src/nvim/highlight_group.c @@ -312,6 +312,8 @@ static const char *highlight_init_both[] = { "default link @lsp.type.typeParameter @type.definition", "default link @lsp.type.variable @variable", + "default link @lsp.mod.deprecated DiagnosticDeprecated", + NULL }; |