1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1 @@
; inherits: html

View File

@ -0,0 +1,21 @@
; inherits: html
"---" @punctuation.delimiter
[
"{"
"}"
] @punctuation.special
; custom components get `@type` highlighting
((start_tag
(tag_name) @type)
(#lua-match? @type "^[A-Z]"))
((end_tag
(tag_name) @type)
(#lua-match? @type "^[A-Z]"))
((erroneous_end_tag
(erroneous_end_tag_name) @type)
(#lua-match? @type "^[A-Z]"))

View File

@ -0,0 +1 @@
; inherits: html

View File

@ -0,0 +1,32 @@
; inherits: html_tags
(frontmatter
(frontmatter_js_block) @injection.content
(#set! injection.language "typescript"))
(attribute_interpolation
(attribute_js_expr) @injection.content
(#set! injection.language "typescript"))
(attribute
(attribute_backtick_string) @injection.content
(#set! injection.language "typescript"))
(html_interpolation
(permissible_text) @injection.content
(#set! injection.language "typescript"))
(script_element
(raw_text) @injection.content
(#set! injection.language "typescript"))
(style_element
(start_tag
(attribute
(attribute_name) @_lang_attr
(quoted_attribute_value
(attribute_value) @_lang_value)))
(raw_text) @injection.content
(#eq? @_lang_attr "lang")
(#eq? @_lang_value "scss")
(#set! injection.language "scss"))

View File

@ -0,0 +1 @@
; inherits: html