From 7f94d67cce04305bf374ffc4d608a0584f266bae Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Wed, 3 Dec 2025 14:04:47 +0300 Subject: 03.12.25 --- config/nvim/after/queries/kotlin/highlights.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 config/nvim/after/queries/kotlin/highlights.scm (limited to 'config/nvim/after/queries/kotlin/highlights.scm') diff --git a/config/nvim/after/queries/kotlin/highlights.scm b/config/nvim/after/queries/kotlin/highlights.scm new file mode 100644 index 0000000..17d061d --- /dev/null +++ b/config/nvim/after/queries/kotlin/highlights.scm @@ -0,0 +1,24 @@ +;; vim: ft=query +;; extends +(function_declaration + (simple_identifier) @AlabasterDefinition) + +(class_declaration + (type_identifier) @AlabasterDefinition) + +(object_declaration + (type_identifier) @AlabasterDefinition) + +(string_literal) @AlabasterString + +(boolean_literal) @AlabasterConstant +(integer_literal) @AlabasterConstant +(long_literal) @AlabasterConstant +(unsigned_literal) @AlabasterConstant +(real_literal) @AlabasterConstant + +(line_comment) @AlabasterHashbang +(multiline_comment) @Comment + + +(modifiers (annotation (user_type (type_identifier) @AlabasterPunctuation))) -- cgit v1.2.3