diff options
author | Kirawi | 2021-11-03 03:00:52 +0000 |
---|---|---|
committer | GitHub | 2021-11-03 03:00:52 +0000 |
commit | ee889aaa854d0036da3bae16252bc382e50b0df6 (patch) | |
tree | 6b084b76276c1c8f7b6af331329f89f5623f3b4a /runtime/themes/nord.toml | |
parent | 7a0c4322eaeef7325878abe9a99adde4ad905f5e (diff) |
Updated tree-sitter query scopes (#896)
* updated theme scopes
variable.property -> variable.field
property -> variable.field
* updated theme scopes
* update book and themes
updated book and themes to reflect scope changes
* wip
* update more queries
* update dark_plus.toml
Diffstat (limited to 'runtime/themes/nord.toml')
-rw-r--r-- | runtime/themes/nord.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/themes/nord.toml b/runtime/themes/nord.toml index 29f3875d..78736c3b 100644 --- a/runtime/themes/nord.toml +++ b/runtime/themes/nord.toml @@ -59,7 +59,7 @@ # nord9 - operator, tags, units, punctuations "punctuation.delimiter" = "nord9" "operator" = { fg = "nord9" } -"property" = "nord9" +"variable.other.member" = "nord9" # nord10 - keywords, special "keyword" = { fg = "nord10" } @@ -76,13 +76,13 @@ # nord13 - warnings, escape characters, regex "warning" = "nord13" -"escape" = { fg = "nord13" } +"constant.character.escape" = { fg = "nord13" } # nord14 - strings "string" = "nord14" # nord15 - integer, floating point -"number" = "nord15" +"constant.numeric" = "nord15" [palette] nord0 = "#2e3440" |