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,6 @@
[
(service)
(method)
(dto)
(enum)
] @fold

View File

@ -0,0 +1,87 @@
[
";"
"."
","
] @punctuation.delimiter
[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket
(comment) @comment @spell
(doc_comment) @comment.documentation @spell
[
"service"
"errors"
] @keyword
"method" @keyword.function
[
"enum"
"data"
] @keyword.type
"extern" @keyword.modifier
(type) @type.builtin
(service
service_name: (identifier) @type)
(error_set
(identifier) @variable.member)
(error_set
name: (identifier) @type)
(dto
name: (identifier) @type)
(external_dto
name: (identifier) @type)
(enum
(values_block
(identifier) @constant))
(enum
name: (identifier) @type)
(external_enum
name: (identifier) @type)
(type
name: (identifier) @type)
[
"map"
"nullable"
"result"
"required"
"http"
"csharp"
"js"
"info"
"obsolete"
] @attribute.builtin
(parameter
name: (identifier) @variable.parameter)
(field
name: (identifier) @variable.member)
(method
name: (identifier) @function.method)
(number_literal) @number
(string_literal) @string

View File

@ -0,0 +1,7 @@
[
(service_block)
(values_block)
(field_list)
] @indent.begin
"}" @indent.branch

View File

@ -0,0 +1,8 @@
((remarks) @injection.content
(#set! injection.language "markdown"))
([
(comment)
(doc_comment)
] @injection.content
(#set! injection.language "comment"))