mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
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
This commit is contained in:
parent
7a0c4322ea
commit
ee889aaa85
37 changed files with 199 additions and 165 deletions
|
@ -103,8 +103,6 @@ We use a similar set of scopes as
|
||||||
[SublimeText](https://www.sublimetext.com/docs/scope_naming.html). See also
|
[SublimeText](https://www.sublimetext.com/docs/scope_naming.html). See also
|
||||||
[TextMate](https://macromates.com/manual/en/language_grammars) scopes.
|
[TextMate](https://macromates.com/manual/en/language_grammars) scopes.
|
||||||
|
|
||||||
- `escape` (TODO: rename to (constant).character.escape)
|
|
||||||
|
|
||||||
- `type` - Types
|
- `type` - Types
|
||||||
- `builtin` - Primitive types provided by the language (`int`, `usize`)
|
- `builtin` - Primitive types provided by the language (`int`, `usize`)
|
||||||
|
|
||||||
|
@ -112,8 +110,11 @@ We use a similar set of scopes as
|
||||||
- `builtin` Special constants provided by the language (`true`, `false`, `nil` etc)
|
- `builtin` Special constants provided by the language (`true`, `false`, `nil` etc)
|
||||||
- `boolean`
|
- `boolean`
|
||||||
- `character`
|
- `character`
|
||||||
|
- `escape`
|
||||||
|
- `numeric` (numbers)
|
||||||
|
- `integer`
|
||||||
|
- `float`
|
||||||
|
|
||||||
- `number` (TODO: rename to constant.number/.numeric.{integer, float, complex})
|
|
||||||
- `string` (TODO: string.quoted.{single, double}, string.raw/.unquoted)?
|
- `string` (TODO: string.quoted.{single, double}, string.raw/.unquoted)?
|
||||||
- `regexp` - Regular expressions
|
- `regexp` - Regular expressions
|
||||||
- `special`
|
- `special`
|
||||||
|
@ -129,7 +130,8 @@ We use a similar set of scopes as
|
||||||
- `variable` - Variables
|
- `variable` - Variables
|
||||||
- `builtin` - Reserved language variables (`self`, `this`, `super`, etc)
|
- `builtin` - Reserved language variables (`self`, `this`, `super`, etc)
|
||||||
- `parameter` - Function parameters
|
- `parameter` - Function parameters
|
||||||
- `property`
|
- `other`
|
||||||
|
- `member` - Fields of composite data types (e.g. structs, unions)
|
||||||
- `function` (TODO: ?)
|
- `function` (TODO: ?)
|
||||||
|
|
||||||
- `label`
|
- `label`
|
||||||
|
|
|
@ -35,6 +35,7 @@ pub fn find_first_non_whitespace_char(line: RopeSlice) -> Option<usize> {
|
||||||
line.chars().position(|ch| !ch.is_whitespace())
|
line.chars().position(|ch| !ch.is_whitespace())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Find `.git` root.
|
||||||
pub fn find_root(root: Option<&str>) -> Option<std::path::PathBuf> {
|
pub fn find_root(root: Option<&str>) -> Option<std::path::PathBuf> {
|
||||||
let current_dir = std::env::current_dir().expect("unable to determine current directory");
|
let current_dir = std::env::current_dir().expect("unable to determine current directory");
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
(command_name) @function
|
(command_name) @function
|
||||||
|
|
||||||
(variable_name) @property
|
(variable_name) @variable.other.member
|
||||||
|
|
||||||
[
|
[
|
||||||
"case"
|
"case"
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
(function_definition name: (word) @function)
|
(function_definition name: (word) @function)
|
||||||
|
|
||||||
(file_descriptor) @number
|
(file_descriptor) @constant.numeric.integer
|
||||||
|
|
||||||
[
|
[
|
||||||
(command_substitution)
|
(command_substitution)
|
||||||
|
|
|
@ -20,16 +20,16 @@
|
||||||
] @type.builtin
|
] @type.builtin
|
||||||
|
|
||||||
;; Enum
|
;; Enum
|
||||||
(enum_member_declaration (identifier) @variable.property)
|
(enum_member_declaration (identifier) @variable.other.member)
|
||||||
|
|
||||||
;; Literals
|
;; Literals
|
||||||
[
|
[
|
||||||
(real_literal)
|
(real_literal)
|
||||||
(integer_literal)
|
(integer_literal)
|
||||||
] @number
|
] @constant.numeric.integer
|
||||||
|
|
||||||
|
(character_literal) @constant.character
|
||||||
[
|
[
|
||||||
(character_literal)
|
|
||||||
(string_literal)
|
(string_literal)
|
||||||
(verbatim_string_literal)
|
(verbatim_string_literal)
|
||||||
(interpolated_string_text)
|
(interpolated_string_text)
|
||||||
|
@ -40,8 +40,8 @@
|
||||||
"$@\""
|
"$@\""
|
||||||
] @string
|
] @string
|
||||||
|
|
||||||
|
(boolean_literal) @constant.builtin.boolean
|
||||||
[
|
[
|
||||||
(boolean_literal)
|
|
||||||
(null_literal)
|
(null_literal)
|
||||||
(void_keyword)
|
(void_keyword)
|
||||||
] @constant.builtin
|
] @constant.builtin
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
;; Keywords
|
;; Keywords
|
||||||
(modifier) @keyword
|
(modifier) @keyword
|
||||||
(this_expression) @keyword
|
(this_expression) @keyword
|
||||||
(escape_sequence) @keyword
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
[
|
[
|
||||||
"as"
|
"as"
|
||||||
|
|
|
@ -60,8 +60,8 @@
|
||||||
(system_lib_string) @string
|
(system_lib_string) @string
|
||||||
|
|
||||||
(null) @constant
|
(null) @constant
|
||||||
(number_literal) @number
|
(number_literal) @constant.numeric.integer
|
||||||
(char_literal) @string
|
(char_literal) @constant.character
|
||||||
|
|
||||||
(call_expression
|
(call_expression
|
||||||
function: (identifier) @function)
|
function: (identifier) @function)
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
(preproc_function_def
|
(preproc_function_def
|
||||||
name: (identifier) @function.special)
|
name: (identifier) @function.special)
|
||||||
|
|
||||||
(field_identifier) @property
|
(field_identifier) @variable.other.member
|
||||||
(statement_identifier) @label
|
(statement_identifier) @label
|
||||||
(type_identifier) @type
|
(type_identifier) @type
|
||||||
(primitive_type) @type
|
(primitive_type) @type
|
||||||
|
|
|
@ -26,11 +26,11 @@
|
||||||
(pseudo_element_selector (tag_name) @attribute)
|
(pseudo_element_selector (tag_name) @attribute)
|
||||||
(pseudo_class_selector (class_name) @attribute)
|
(pseudo_class_selector (class_name) @attribute)
|
||||||
|
|
||||||
(class_name) @property
|
(class_name) @variable.other.member
|
||||||
(id_name) @property
|
(id_name) @variable.other.member
|
||||||
(namespace_name) @property
|
(namespace_name) @variable.other.member
|
||||||
(property_name) @property
|
(property_name) @variable.other.member
|
||||||
(feature_name) @property
|
(feature_name) @variable.other.member
|
||||||
|
|
||||||
(attribute_name) @attribute
|
(attribute_name) @attribute
|
||||||
|
|
||||||
|
@ -55,8 +55,8 @@
|
||||||
(string_value) @string
|
(string_value) @string
|
||||||
(color_value) @string.special
|
(color_value) @string.special
|
||||||
|
|
||||||
(integer_value) @number
|
(integer_value) @constant.numeric.integer
|
||||||
(float_value) @number
|
(float_value) @constant.numeric.float
|
||||||
(unit) @type
|
(unit) @type
|
||||||
|
|
||||||
"#" @punctuation.delimiter
|
"#" @punctuation.delimiter
|
||||||
|
|
|
@ -39,13 +39,13 @@
|
||||||
|
|
||||||
; * module attribute
|
; * module attribute
|
||||||
(unary_operator
|
(unary_operator
|
||||||
operator: "@" @variable.property
|
operator: "@" @variable.other.member
|
||||||
operand: [
|
operand: [
|
||||||
(identifier) @variable.property
|
(identifier) @variable.other.member
|
||||||
(call
|
(call
|
||||||
target: (identifier) @variable.property)
|
target: (identifier) @variable.other.member)
|
||||||
(boolean) @variable.property
|
(boolean) @variable.other.member
|
||||||
(nil) @variable.property
|
(nil) @variable.other.member
|
||||||
])
|
])
|
||||||
|
|
||||||
; * capture operator
|
; * capture operator
|
||||||
|
@ -79,11 +79,8 @@
|
||||||
(nil) @constant.builtin
|
(nil) @constant.builtin
|
||||||
|
|
||||||
(boolean) @constant.builtin.boolean
|
(boolean) @constant.builtin.boolean
|
||||||
|
(integer) @constant.numeric.integer
|
||||||
[
|
(float) @constant.numeric.float
|
||||||
(integer)
|
|
||||||
(float)
|
|
||||||
] @number
|
|
||||||
|
|
||||||
(alias) @type
|
(alias) @type
|
||||||
|
|
||||||
|
@ -97,7 +94,7 @@
|
||||||
|
|
||||||
(interpolation "#{" @punctuation.special "}" @punctuation.special) @embedded
|
(interpolation "#{" @punctuation.special "}" @punctuation.special) @embedded
|
||||||
|
|
||||||
(escape_sequence) @escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
[
|
[
|
||||||
(atom)
|
(atom)
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
(variadic_parameter_declaration (identifier) @variable.parameter)
|
(variadic_parameter_declaration (identifier) @variable.parameter)
|
||||||
|
|
||||||
(type_identifier) @type
|
(type_identifier) @type
|
||||||
(field_identifier) @property
|
(field_identifier) @variable.other.member
|
||||||
(identifier) @variable
|
(identifier) @variable
|
||||||
(package_identifier) @variable
|
(package_identifier) @variable
|
||||||
|
|
||||||
|
@ -130,13 +130,13 @@
|
||||||
(rune_literal)
|
(rune_literal)
|
||||||
] @string
|
] @string
|
||||||
|
|
||||||
(escape_sequence) @escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
[
|
[
|
||||||
(int_literal)
|
(int_literal)
|
||||||
(float_literal)
|
(float_literal)
|
||||||
(imaginary_literal)
|
(imaginary_literal)
|
||||||
] @number
|
] @constant.numeric.integer
|
||||||
|
|
||||||
[
|
[
|
||||||
(true)
|
(true)
|
||||||
|
|
|
@ -13,9 +13,9 @@
|
||||||
(constraint class: (class_name (type)) @class)
|
(constraint class: (class_name (type)) @class)
|
||||||
(class (class_head class: (class_name (type)) @class))
|
(class (class_head class: (class_name (type)) @class))
|
||||||
(instance (instance_head class: (class_name (type)) @class))
|
(instance (instance_head class: (class_name (type)) @class))
|
||||||
(integer) @number
|
(integer) @constant.numeric.integer
|
||||||
(exp_literal (float)) @number
|
(exp_literal (float)) @constant.numeric.float
|
||||||
(char) @literal
|
(char) @constant.character
|
||||||
(con_unit) @literal
|
(con_unit) @literal
|
||||||
(con_list) @literal
|
(con_list) @literal
|
||||||
(tycon_arrow) @operator
|
(tycon_arrow) @operator
|
||||||
|
|
|
@ -59,14 +59,15 @@
|
||||||
(hex_integer_literal)
|
(hex_integer_literal)
|
||||||
(decimal_integer_literal)
|
(decimal_integer_literal)
|
||||||
(octal_integer_literal)
|
(octal_integer_literal)
|
||||||
(decimal_floating_point_literal)
|
] @constant.numeric.integer
|
||||||
(hex_floating_point_literal)
|
|
||||||
] @number
|
|
||||||
|
|
||||||
[
|
[
|
||||||
(character_literal)
|
(decimal_floating_point_literal)
|
||||||
(string_literal)
|
(hex_floating_point_literal)
|
||||||
] @string
|
] @constant.numeric.float
|
||||||
|
|
||||||
|
(character_literal) @constant.character
|
||||||
|
(string_literal) @string
|
||||||
|
|
||||||
[
|
[
|
||||||
(true)
|
(true)
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
; Properties
|
; Properties
|
||||||
;-----------
|
;-----------
|
||||||
|
|
||||||
(property_identifier) @property
|
(property_identifier) @variable.other.member
|
||||||
|
|
||||||
; Literals
|
; Literals
|
||||||
;---------
|
;---------
|
||||||
|
@ -88,7 +88,7 @@
|
||||||
] @string
|
] @string
|
||||||
|
|
||||||
(regex) @string.regexp
|
(regex) @string.regexp
|
||||||
(number) @number
|
(number) @constant.numeric.integer
|
||||||
|
|
||||||
; Tokens
|
; Tokens
|
||||||
;-------
|
;-------
|
||||||
|
|
|
@ -1,9 +1,20 @@
|
||||||
|
[
|
||||||
|
(true)
|
||||||
|
(false)
|
||||||
|
] @constant.builtin.boolean
|
||||||
|
(null) @constant.builtin
|
||||||
|
(number) @constant.numeric
|
||||||
(pair
|
(pair
|
||||||
key: (_) @keyword)
|
key: (_) @keyword)
|
||||||
|
|
||||||
(string) @string
|
(string) @string
|
||||||
|
(escape_sequence) @constant.character.escape
|
||||||
|
(ERROR) @error
|
||||||
|
|
||||||
(object
|
"," @punctuation.delimiter
|
||||||
"{" @escape
|
[
|
||||||
(_)
|
"["
|
||||||
"}" @escape)
|
"]"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
(field_expression
|
(field_expression
|
||||||
(identifier)
|
(identifier)
|
||||||
(identifier) @field .)
|
(identifier) @variable.other.member .)
|
||||||
|
|
||||||
(function_definition
|
(function_definition
|
||||||
name: (identifier) @function)
|
name: (identifier) @function)
|
||||||
|
@ -80,14 +80,14 @@
|
||||||
(struct_definition
|
(struct_definition
|
||||||
name: (identifier) @type)
|
name: (identifier) @type)
|
||||||
|
|
||||||
(number) @number
|
(number) @constant.numeric.integer
|
||||||
(range_expression
|
(range_expression
|
||||||
(identifier) @number
|
(identifier) @constant.numeric.integer
|
||||||
(eq? @number "end"))
|
(eq? @constant.numeric.integer "end"))
|
||||||
(range_expression
|
(range_expression
|
||||||
(_
|
(_
|
||||||
(identifier) @number
|
(identifier) @constant.numeric.integer
|
||||||
(eq? @number "end")))
|
(eq? @constant.numeric.integer "end")))
|
||||||
(coefficient_expression
|
(coefficient_expression
|
||||||
(number)
|
(number)
|
||||||
(identifier) @constant.builtin)
|
(identifier) @constant.builtin)
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
(date)
|
(date)
|
||||||
(interval)
|
(interval)
|
||||||
(quantity)
|
(quantity)
|
||||||
] @number
|
] @constant.numeric.integer
|
||||||
|
|
||||||
((account) @field)
|
((account) @variable.other.member)
|
||||||
((commodity) @text.literal)
|
((commodity) @text.literal)
|
||||||
|
|
||||||
"include" @include
|
"include" @include
|
||||||
|
|
|
@ -150,14 +150,14 @@
|
||||||
(table ["{" "}"] @constructor)
|
(table ["{" "}"] @constructor)
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
(string) @string
|
(string) @string
|
||||||
(number) @number
|
(number) @constant.numeric.integer
|
||||||
(label_statement) @label
|
(label_statement) @label
|
||||||
; A bit of a tricky one, this will only match field names
|
; A bit of a tricky one, this will only match field names
|
||||||
(field . (identifier) @property (_))
|
(field . (identifier) @variable.other.member (_))
|
||||||
(shebang) @comment
|
(shebang) @comment
|
||||||
|
|
||||||
;; Property
|
;; Property
|
||||||
(property_identifier) @property
|
(property_identifier) @variable.other.member
|
||||||
|
|
||||||
;; Variable
|
;; Variable
|
||||||
(identifier) @variable
|
(identifier) @variable
|
||||||
|
|
|
@ -33,16 +33,14 @@
|
||||||
|
|
||||||
(uri) @string.special.uri
|
(uri) @string.special.uri
|
||||||
|
|
||||||
[
|
(integer) @constant.numeric.integer
|
||||||
(integer)
|
(float) @constant.numeric.float
|
||||||
(float)
|
|
||||||
] @number
|
|
||||||
|
|
||||||
(interpolation
|
(interpolation
|
||||||
"${" @punctuation.special
|
"${" @punctuation.special
|
||||||
"}" @punctuation.special) @embedded
|
"}" @punctuation.special) @embedded
|
||||||
|
|
||||||
(escape_sequence) @escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
(function
|
(function
|
||||||
universal: (identifier) @variable.parameter
|
universal: (identifier) @variable.parameter
|
||||||
|
@ -66,8 +64,8 @@
|
||||||
(binary
|
(binary
|
||||||
operator: _ @operator)
|
operator: _ @operator)
|
||||||
|
|
||||||
(attr_identifier) @property
|
(attr_identifier) @variable.other.member
|
||||||
(inherit attrs: (attrs_inherited (identifier) @property) )
|
(inherit attrs: (attrs_inherited (identifier) @variable.other.member) )
|
||||||
|
|
||||||
[
|
[
|
||||||
";"
|
";"
|
||||||
|
|
|
@ -51,14 +51,14 @@
|
||||||
; Properties
|
; Properties
|
||||||
;-----------
|
;-----------
|
||||||
|
|
||||||
[(label_name) (field_name) (instance_variable_name)] @property
|
[(label_name) (field_name) (instance_variable_name)] @variable.other.member
|
||||||
|
|
||||||
; Constants
|
; Constants
|
||||||
;----------
|
;----------
|
||||||
|
|
||||||
[(boolean) (unit)] @constant
|
[(boolean) (unit)] @constant
|
||||||
|
|
||||||
[(number) (signed_number)] @number
|
[(number) (signed_number)] @constant.numeric.integer
|
||||||
|
|
||||||
(character) @constant.character
|
(character) @constant.character
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
|
|
||||||
(quoted_string "{" @string "}" @string) @string
|
(quoted_string "{" @string "}" @string) @string
|
||||||
|
|
||||||
(escape_sequence) @string.escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
[
|
[
|
||||||
(conversion_specification)
|
(conversion_specification)
|
||||||
|
@ -145,7 +145,7 @@
|
||||||
; Attributes
|
; Attributes
|
||||||
;-----------
|
;-----------
|
||||||
|
|
||||||
(attribute_id) @property
|
(attribute_id) @variable.other.member
|
||||||
|
|
||||||
; Comments
|
; Comments
|
||||||
;---------
|
;---------
|
||||||
|
|
|
@ -30,12 +30,12 @@
|
||||||
; Member
|
; Member
|
||||||
|
|
||||||
(property_element
|
(property_element
|
||||||
(variable_name) @property)
|
(variable_name) @variable.other.member)
|
||||||
|
|
||||||
(member_access_expression
|
(member_access_expression
|
||||||
name: (variable_name (name)) @property)
|
name: (variable_name (name)) @variable.other.member)
|
||||||
(member_access_expression
|
(member_access_expression
|
||||||
name: (name) @property)
|
name: (name) @variable.other.member)
|
||||||
|
|
||||||
; Variables
|
; Variables
|
||||||
|
|
||||||
|
@ -56,10 +56,10 @@
|
||||||
|
|
||||||
(string) @string
|
(string) @string
|
||||||
(heredoc) @string
|
(heredoc) @string
|
||||||
(boolean) @constant.builtin
|
(boolean) @constant.builtin.boolean
|
||||||
(null) @constant.builtin
|
(null) @constant.builtin
|
||||||
(integer) @number
|
(integer) @constant.numeric.integer
|
||||||
(float) @number
|
(float) @constant.numeric.float
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
|
|
||||||
"$" @operator
|
"$" @operator
|
||||||
|
|
|
@ -34,16 +34,14 @@
|
||||||
[
|
[
|
||||||
(fieldName)
|
(fieldName)
|
||||||
(optionName)
|
(optionName)
|
||||||
] @property
|
] @variable.other.member
|
||||||
(enumVariantName) @type.enum.variant
|
(enumVariantName) @type.enum.variant
|
||||||
|
|
||||||
(fullIdent) @namespace
|
(fullIdent) @namespace
|
||||||
|
|
||||||
[
|
(intLit) @constant.numeric.integer
|
||||||
(intLit)
|
(floatLit) @constant.numeric.float
|
||||||
(floatLit)
|
(boolLit) @constant.builtin.boolean
|
||||||
] @number
|
|
||||||
(boolLit) @constant.builtin
|
|
||||||
(strLit) @string
|
(strLit) @string
|
||||||
|
|
||||||
(constant) @constant
|
(constant) @constant
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
name: (identifier) @function)
|
name: (identifier) @function)
|
||||||
|
|
||||||
(identifier) @variable
|
(identifier) @variable
|
||||||
(attribute attribute: (identifier) @property)
|
(attribute attribute: (identifier) @variable.other.member)
|
||||||
(type (identifier) @type)
|
(type (identifier) @type)
|
||||||
|
|
||||||
; Literals
|
; Literals
|
||||||
|
@ -40,14 +40,11 @@
|
||||||
(false)
|
(false)
|
||||||
] @constant.builtin
|
] @constant.builtin
|
||||||
|
|
||||||
[
|
(integer) @constant.numeric.integer
|
||||||
(integer)
|
(float) @constant.numeric.float
|
||||||
(float)
|
|
||||||
] @number
|
|
||||||
|
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
(string) @string
|
(string) @string
|
||||||
(escape_sequence) @escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
(interpolation
|
(interpolation
|
||||||
"{" @punctuation.special
|
"{" @punctuation.special
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
[
|
[
|
||||||
(class_variable)
|
(class_variable)
|
||||||
(instance_variable)
|
(instance_variable)
|
||||||
] @property
|
] @variable.other.member
|
||||||
|
|
||||||
((identifier) @constant.builtin
|
((identifier) @constant.builtin
|
||||||
(#match? @constant.builtin "^__(FILE|LINE|ENCODING)__$"))
|
(#match? @constant.builtin "^__(FILE|LINE|ENCODING)__$"))
|
||||||
|
@ -101,12 +101,12 @@
|
||||||
] @string.special.symbol
|
] @string.special.symbol
|
||||||
|
|
||||||
(regex) @string.regexp
|
(regex) @string.regexp
|
||||||
(escape_sequence) @escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
[
|
[
|
||||||
(integer)
|
(integer)
|
||||||
(float)
|
(float)
|
||||||
] @number
|
] @constant.numeric.integer
|
||||||
|
|
||||||
[
|
[
|
||||||
(nil)
|
(nil)
|
||||||
|
|
|
@ -15,15 +15,13 @@
|
||||||
; Primitives
|
; Primitives
|
||||||
; ---
|
; ---
|
||||||
|
|
||||||
(escape_sequence) @escape
|
(escape_sequence) @constant.character.escape
|
||||||
(primitive_type) @type.builtin
|
(primitive_type) @type.builtin
|
||||||
(boolean_literal) @constant.builtin.boolean
|
(boolean_literal) @constant.builtin.boolean
|
||||||
|
(integer_literal) @constant.numeric.integer
|
||||||
|
(float_literal) @constant.numeric.float
|
||||||
|
(char_literal) @constant.character
|
||||||
[
|
[
|
||||||
(integer_literal)
|
|
||||||
(float_literal)
|
|
||||||
] @number
|
|
||||||
[
|
|
||||||
(char_literal)
|
|
||||||
(string_literal)
|
(string_literal)
|
||||||
(raw_string_literal)
|
(raw_string_literal)
|
||||||
] @string
|
] @string
|
||||||
|
@ -40,10 +38,10 @@
|
||||||
(enum_variant (identifier) @type.enum.variant)
|
(enum_variant (identifier) @type.enum.variant)
|
||||||
|
|
||||||
(field_initializer
|
(field_initializer
|
||||||
(field_identifier) @property)
|
(field_identifier) @variable.other.member)
|
||||||
(shorthand_field_initializer
|
(shorthand_field_initializer
|
||||||
(identifier) @variable.property)
|
(identifier) @variable.other.member)
|
||||||
(shorthand_field_identifier) @variable.property
|
(shorthand_field_identifier) @variable.other.member
|
||||||
|
|
||||||
(lifetime
|
(lifetime
|
||||||
"'" @label
|
"'" @label
|
||||||
|
@ -81,9 +79,24 @@
|
||||||
] @punctuation.bracket)
|
] @punctuation.bracket)
|
||||||
|
|
||||||
; ---
|
; ---
|
||||||
; Parameters
|
; Variables
|
||||||
; ---
|
; ---
|
||||||
|
|
||||||
|
(let_declaration
|
||||||
|
pattern: [
|
||||||
|
((identifier) @variable)
|
||||||
|
((tuple_pattern
|
||||||
|
(identifier) @variable))
|
||||||
|
])
|
||||||
|
|
||||||
|
; It needs to be anonymous to not conflict with `call_expression` further below.
|
||||||
|
(_
|
||||||
|
value: (field_expression
|
||||||
|
value: (identifier)? @variable
|
||||||
|
field: (field_identifier) @variable.other.member))
|
||||||
|
|
||||||
|
(arguments
|
||||||
|
(identifier) @variable.parameter)
|
||||||
(parameter
|
(parameter
|
||||||
pattern: (identifier) @variable.parameter)
|
pattern: (identifier) @variable.parameter)
|
||||||
(closure_parameters
|
(closure_parameters
|
||||||
|
@ -336,4 +349,4 @@
|
||||||
|
|
||||||
(type_identifier) @type
|
(type_identifier) @type
|
||||||
(identifier) @variable
|
(identifier) @variable
|
||||||
(field_identifier) @property
|
(field_identifier) @variable.other.member
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
(#match? @_attr "^(href|src)$"))
|
(#match? @_attr "^(href|src)$"))
|
||||||
|
|
||||||
(tag_name) @tag
|
(tag_name) @tag
|
||||||
(attribute_name) @property
|
(attribute_name) @variable.other.member
|
||||||
(erroneous_end_tag_name) @error
|
(erroneous_end_tag_name) @error
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
; Properties
|
; Properties
|
||||||
;-----------
|
;-----------
|
||||||
|
|
||||||
(bare_key) @property
|
(bare_key) @variable.other.member
|
||||||
(quoted_key) @string
|
(quoted_key) @string
|
||||||
|
|
||||||
; Literals
|
; Literals
|
||||||
;---------
|
;---------
|
||||||
|
|
||||||
(boolean) @constant.builtin
|
(boolean) @constant.builtin.boolean
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
(string) @string
|
(string) @string
|
||||||
(integer) @number
|
(integer) @constant.numeric.integer
|
||||||
(float) @number
|
(float) @constant.numeric.float
|
||||||
(offset_date_time) @string.special
|
(offset_date_time) @string.special
|
||||||
(local_date_time) @string.special
|
(local_date_time) @string.special
|
||||||
(local_date) @string.special
|
(local_date) @string.special
|
||||||
|
|
|
@ -35,12 +35,12 @@
|
||||||
|
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
|
|
||||||
(field_name) @property
|
(field_name) @variable.other.member
|
||||||
|
|
||||||
(capture) @label
|
(capture) @label
|
||||||
|
|
||||||
(predicate_name) @function
|
(predicate_name) @function
|
||||||
|
|
||||||
(escape_sequence) @escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
(node_name) @variable
|
(node_name) @variable
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
(block_mapping_pair key: (_) @property)
|
(block_mapping_pair key: (_) @variable.other.member)
|
||||||
(flow_mapping (_ key: (_) @property))
|
(flow_mapping (_ key: (_) @variable.other.member))
|
||||||
(boolean_scalar) @constant.builtin.boolean
|
(boolean_scalar) @constant.builtin.boolean
|
||||||
(null_scalar) @constant.builtin
|
(null_scalar) @constant.builtin
|
||||||
(double_quote_scalar) @string
|
(double_quote_scalar) @string
|
||||||
(single_quote_scalar) @string
|
(single_quote_scalar) @string
|
||||||
(escape_sequence) @string.escape
|
(escape_sequence) @constant.character.escape
|
||||||
(integer_scalar) @number
|
(integer_scalar) @constant.numeric.integer
|
||||||
(float_scalar) @number
|
(float_scalar) @constant.numeric.float
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
(anchor_name) @type
|
(anchor_name) @type
|
||||||
(alias_name) @type
|
(alias_name) @type
|
||||||
|
|
|
@ -14,7 +14,7 @@ parameter: (IDENTIFIER) @variable.parameter
|
||||||
[
|
[
|
||||||
field_member: (IDENTIFIER)
|
field_member: (IDENTIFIER)
|
||||||
field_access: (IDENTIFIER)
|
field_access: (IDENTIFIER)
|
||||||
] @variable.property
|
] @variable.other.member
|
||||||
|
|
||||||
;; assume TitleCase is a type
|
;; assume TitleCase is a type
|
||||||
(
|
(
|
||||||
|
@ -75,9 +75,9 @@ field_constant: (IDENTIFIER) @constant
|
||||||
((BUILTINIDENTIFIER) @keyword.control.import
|
((BUILTINIDENTIFIER) @keyword.control.import
|
||||||
(#any-of? @keyword.control.import "@import" "@cImport"))
|
(#any-of? @keyword.control.import "@import" "@cImport"))
|
||||||
|
|
||||||
(INTEGER) @number
|
(INTEGER) @constant.numeric.integer
|
||||||
|
|
||||||
(FLOAT) @number
|
(FLOAT) @constant.numeric.float
|
||||||
|
|
||||||
[
|
[
|
||||||
(LINESTRING)
|
(LINESTRING)
|
||||||
|
@ -85,7 +85,7 @@ field_constant: (IDENTIFIER) @constant
|
||||||
] @string
|
] @string
|
||||||
|
|
||||||
(CHAR_LITERAL) @constant.character
|
(CHAR_LITERAL) @constant.character
|
||||||
(EscapeSequence) @escape
|
(EscapeSequence) @constant.character.escape
|
||||||
(FormatSequence) @string.special
|
(FormatSequence) @string.special
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|
|
@ -16,14 +16,14 @@
|
||||||
"operator" = "base05"
|
"operator" = "base05"
|
||||||
"ui.text.focus" = { fg = "base05" }
|
"ui.text.focus" = { fg = "base05" }
|
||||||
"variable" = "base08"
|
"variable" = "base08"
|
||||||
"number" = "base09"
|
"constant.numeric" = "base09"
|
||||||
"constant" = "base09"
|
"constant" = "base09"
|
||||||
"attributes" = "base09"
|
"attributes" = "base09"
|
||||||
"type" = "base0A"
|
"type" = "base0A"
|
||||||
"ui.cursor.match" = { fg = "base0A", modifiers = ["underlined"] }
|
"ui.cursor.match" = { fg = "base0A", modifiers = ["underlined"] }
|
||||||
"strings" = "base0B"
|
"strings" = "base0B"
|
||||||
"property" = "base0B"
|
"variable.other.member" = "base0B"
|
||||||
"escape" = "base0C"
|
"constant.character.escape" = "base0C"
|
||||||
"function" = "base0D"
|
"function" = "base0D"
|
||||||
"constructor" = "base0D"
|
"constructor" = "base0D"
|
||||||
"special" = "base0D"
|
"special" = "base0D"
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"punctuation.delimiter" = "#dc7759"
|
"punctuation.delimiter" = "#dc7759"
|
||||||
"operator" = { fg = "#dc7759", modifiers = ["bold"] }
|
"operator" = { fg = "#dc7759", modifiers = ["bold"] }
|
||||||
"special" = "#7fdc59"
|
"special" = "#7fdc59"
|
||||||
"property" = "#c6b8ad"
|
"variable.other.member" = "#c6b8ad"
|
||||||
"variable" = "#c6b8ad"
|
"variable" = "#c6b8ad"
|
||||||
"variable.parameter" = "#c6b8ad"
|
"variable.parameter" = "#c6b8ad"
|
||||||
"type" = "#dc597f"
|
"type" = "#dc597f"
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
"constant" = "#59dcb7"
|
"constant" = "#59dcb7"
|
||||||
"constant.builtin" = "#59dcb7"
|
"constant.builtin" = "#59dcb7"
|
||||||
"string" = "#59dcb7"
|
"string" = "#59dcb7"
|
||||||
"number" = "#59c0dc"
|
"constant.numeric" = "#59c0dc"
|
||||||
"escape" = { fg = "#7fdc59", modifiers = ["bold"] }
|
"constant.character.escape" = { fg = "#7fdc59", modifiers = ["bold"] }
|
||||||
"label" = "#59c0dc"
|
"label" = "#59c0dc"
|
||||||
|
|
||||||
"module" = "#d32c5d"
|
"module" = "#d32c5d"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"type.builtin" = { fg = "type" }
|
"type.builtin" = { fg = "type" }
|
||||||
"type.enum.variant" = { fg = "constant" }
|
"type.enum.variant" = { fg = "constant" }
|
||||||
"constructor" = { fg = "constant" }
|
"constructor" = { fg = "constant" }
|
||||||
"property" = { fg = "variable" }
|
"variable.other.member" = { fg = "variable" }
|
||||||
|
|
||||||
"keyword" = { fg = "keyword" }
|
"keyword" = { fg = "keyword" }
|
||||||
"keyword.directive" = { fg = "keyword" }
|
"keyword.directive" = { fg = "keyword" }
|
||||||
|
@ -31,47 +31,64 @@
|
||||||
"function.macro" = { fg = "keyword" }
|
"function.macro" = { fg = "keyword" }
|
||||||
"attribute" = { fg = "fn_declaration" }
|
"attribute" = { fg = "fn_declaration" }
|
||||||
|
|
||||||
"comment" = { fg = "#6A9955" }
|
"comment" = { fg = "dark_green" }
|
||||||
|
|
||||||
"string" = { fg = "#ce9178" }
|
"string" = { fg = "orange" }
|
||||||
"string.regexp" = { fg = "regex" }
|
"constant.character" = { fg = "orange" }
|
||||||
"number" = { fg = "#b5cea8" }
|
"string.regexp" = { fg = "gold" }
|
||||||
"escape" = { fg = "#d7ba7d" }
|
"constant.numeric" = { fg = "pale_green" }
|
||||||
|
"constant.character.escape" = { fg = "gold" }
|
||||||
|
|
||||||
"ui.background" = { fg = "#d4d4d4", bg = "#1e1e1e" }
|
"ui.background" = { fg = "light_gray", bg = "dark_gray2" }
|
||||||
|
|
||||||
"ui.window" = { bg = "widget" }
|
"ui.window" = { bg = "widget" }
|
||||||
"ui.popup" = { bg = "widget" }
|
"ui.popup" = { bg = "widget" }
|
||||||
"ui.help" = { bg = "widget" }
|
"ui.help" = { bg = "widget" }
|
||||||
"ui.menu.selected" = { bg = "widget" }
|
"ui.menu.selected" = { bg = "widget" }
|
||||||
|
|
||||||
|
# TODO: Alternate bg colour for `ui.cursor.match` and `ui.selection`.
|
||||||
"ui.cursor" = { fg = "cursor", modifiers = ["reversed"] }
|
"ui.cursor" = { fg = "cursor", modifiers = ["reversed"] }
|
||||||
"ui.cursor.primary" = { fg = "cursor", modifiers = ["reversed"] }
|
"ui.cursor.primary" = { fg = "cursor", modifiers = ["reversed"] }
|
||||||
"ui.cursor.match" = { bg = "#3a3d41", modifiers = ["underlined"] }
|
"ui.cursor.match" = { bg = "#3a3d41", modifiers = ["underlined"] }
|
||||||
|
|
||||||
"ui.selection" = { bg = "#3a3d41" }
|
"ui.selection" = { bg = "#3a3d41" }
|
||||||
"ui.selection.primary" = { bg = "#264f78" }
|
"ui.selection.primary" = { bg = "dark_blue" }
|
||||||
|
|
||||||
"ui.linenr" = { fg = "#858585" }
|
"ui.linenr" = { fg = "dark_gray" }
|
||||||
"ui.linenr.selected" = { fg = "#c6c6c6" }
|
"ui.linenr.selected" = { fg = "light_gray2" }
|
||||||
|
|
||||||
"ui.statusline" = { fg = "#ffffff", bg = "#007acc" }
|
"ui.statusline" = { fg = "white", bg = "blue" }
|
||||||
"ui.statusline.inactive" = { fg = "#ffffff", bg = "#007acc" }
|
"ui.statusline.inactive" = { fg = "white", bg = "blue" }
|
||||||
|
|
||||||
"ui.text" = { fg = "text", bg = "background" }
|
"ui.text" = { fg = "text", bg = "background" }
|
||||||
"ui.text.focus" = { fg = "#ffffff" }
|
"ui.text.focus" = { fg = "white" }
|
||||||
|
|
||||||
"warning" = { fg = "#cca700" }
|
"warning" = { fg = "gold2" }
|
||||||
"error" = { fg = "#ff1212" }
|
"error" = { fg = "red" }
|
||||||
"info" = { fg = "#75beff" }
|
"info" = { fg = "light_blue" }
|
||||||
"hint" = { fg = "#eeeeeeb3" }
|
"hint" = { fg = "light_gray3" }
|
||||||
|
|
||||||
diagnostic = { modifiers = ["underlined"] }
|
diagnostic = { modifiers = ["underlined"] }
|
||||||
|
|
||||||
[palette]
|
[palette]
|
||||||
|
white = "#ffffff"
|
||||||
|
orange = "#ce9178"
|
||||||
|
gold = "#d7ba7d"
|
||||||
|
gold2 = "#cca700"
|
||||||
|
pale_green = "#b5cea8"
|
||||||
|
dark_green = "#6A9955"
|
||||||
|
light_gray = "#d4d4d4"
|
||||||
|
light_gray2 = "#c6c6c6"
|
||||||
|
light_gray3 = "#eeeeee"
|
||||||
|
dark_gray = "#858585"
|
||||||
|
dark_gray2 = "#1e1e1e"
|
||||||
|
blue = "#007acc"
|
||||||
|
light_blue = "#75beff"
|
||||||
|
dark_blue = "#264f78"
|
||||||
|
red = "#ff1212"
|
||||||
|
|
||||||
type = "#4EC9B0"
|
type = "#4EC9B0"
|
||||||
keyword = "#569CD6"
|
keyword = "#569CD6"
|
||||||
regex = "#CE9178"
|
|
||||||
special = "#C586C0"
|
special = "#C586C0"
|
||||||
variable = "#9CDCFE"
|
variable = "#9CDCFE"
|
||||||
fn_declaration = "#DCDCAA"
|
fn_declaration = "#DCDCAA"
|
||||||
|
|
|
@ -8,16 +8,16 @@
|
||||||
# Email: sainnhe@gmail.com
|
# Email: sainnhe@gmail.com
|
||||||
# License: MIT License
|
# License: MIT License
|
||||||
|
|
||||||
"escape" = "orange"
|
"constant.character.escape" = "orange"
|
||||||
"type" = "yellow"
|
"type" = "yellow"
|
||||||
"constant" = "purple"
|
"constant" = "purple"
|
||||||
"number" = "purple"
|
"constant.numeric" = "purple"
|
||||||
"string" = "grey2"
|
"string" = "grey2"
|
||||||
"comment" = "grey0"
|
"comment" = "grey0"
|
||||||
"variable" = "fg"
|
"variable" = "fg"
|
||||||
"variable.builtin" = "blue"
|
"variable.builtin" = "blue"
|
||||||
"variable.parameter" = "fg"
|
"variable.parameter" = "fg"
|
||||||
"variable.property" = "fg"
|
"variable.other.member" = "fg"
|
||||||
"label" = "aqua"
|
"label" = "aqua"
|
||||||
"punctuation" = "grey2"
|
"punctuation" = "grey2"
|
||||||
"punctuation.delimiter" = "grey2"
|
"punctuation.delimiter" = "grey2"
|
||||||
|
@ -32,7 +32,6 @@
|
||||||
"attribute" = "aqua"
|
"attribute" = "aqua"
|
||||||
"constructor" = "yellow"
|
"constructor" = "yellow"
|
||||||
"module" = "blue"
|
"module" = "blue"
|
||||||
"property" = "fg"
|
|
||||||
"special" = "orange"
|
"special" = "orange"
|
||||||
|
|
||||||
"ui.background" = { bg = "bg0" }
|
"ui.background" = { bg = "bg0" }
|
||||||
|
|
|
@ -9,8 +9,7 @@
|
||||||
"punctuation.delimiter" = "orange1"
|
"punctuation.delimiter" = "orange1"
|
||||||
"operator" = "purple1"
|
"operator" = "purple1"
|
||||||
"special" = "purple0"
|
"special" = "purple0"
|
||||||
"property" = "blue1"
|
"variable.other.member" = "blue1"
|
||||||
"variable.property" = "blue1"
|
|
||||||
"variable" = "fg1"
|
"variable" = "fg1"
|
||||||
"variable.builtin" = "orange1"
|
"variable.builtin" = "orange1"
|
||||||
"variable.parameter" = "fg2"
|
"variable.parameter" = "fg2"
|
||||||
|
@ -24,8 +23,8 @@
|
||||||
"constant" = { fg = "purple1" }
|
"constant" = { fg = "purple1" }
|
||||||
"constant.builtin" = { fg = "purple1", modifiers = ["bold"] }
|
"constant.builtin" = { fg = "purple1", modifiers = ["bold"] }
|
||||||
"string" = "green1"
|
"string" = "green1"
|
||||||
"number" = "purple1"
|
"constant.numeric" = "purple1"
|
||||||
"escape" = { fg = "fg2", modifiers = ["bold"] }
|
"constant.character.escape" = { fg = "fg2", modifiers = ["bold"] }
|
||||||
"label" = "aqua1"
|
"label" = "aqua1"
|
||||||
"module" = "aqua1"
|
"module" = "aqua1"
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"punctuation.delimiter" = "#C97270"
|
"punctuation.delimiter" = "#C97270"
|
||||||
"operator" = { fg = "#D74E50", modifiers = ["bold"] }
|
"operator" = { fg = "#D74E50", modifiers = ["bold"] }
|
||||||
"special" = "#D68482"
|
"special" = "#D68482"
|
||||||
"property" = "#89BEB7"
|
"variable.other.member" = "#89BEB7"
|
||||||
"variable" = "#A6B6CE"
|
"variable" = "#A6B6CE"
|
||||||
"variable.parameter" = "#89BEB7"
|
"variable.parameter" = "#89BEB7"
|
||||||
"type" = { fg = "#A6B6CE", modifiers = ["bold"] }
|
"type" = { fg = "#A6B6CE", modifiers = ["bold"] }
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
"constant" = "#D4A520"
|
"constant" = "#D4A520"
|
||||||
"constant.builtin" = "#D4A520"
|
"constant.builtin" = "#D4A520"
|
||||||
"string" = "#D74E50"
|
"string" = "#D74E50"
|
||||||
"number" = "#D74E50"
|
"constant.numeric" = "#D74E50"
|
||||||
"escape" = { fg = "#D74E50", modifiers = ["bold"] }
|
"constant.character.escape" = { fg = "#D74E50", modifiers = ["bold"] }
|
||||||
"label" = "#D68482"
|
"label" = "#D68482"
|
||||||
|
|
||||||
"module" = "#839A53"
|
"module" = "#839A53"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"type.builtin" = { fg = "#66D9EF" }
|
"type.builtin" = { fg = "#66D9EF" }
|
||||||
"type.enum.variant" = { fg = "text" }
|
"type.enum.variant" = { fg = "text" }
|
||||||
"constructor" = { fg = "text" }
|
"constructor" = { fg = "text" }
|
||||||
"property" = { fg = "variable" }
|
"variable.other.member" = { fg = "variable" }
|
||||||
|
|
||||||
"keyword" = { fg = "keyword" }
|
"keyword" = { fg = "keyword" }
|
||||||
"keyword.directive" = { fg = "keyword" }
|
"keyword.directive" = { fg = "keyword" }
|
||||||
|
@ -34,9 +34,10 @@
|
||||||
"comment" = { fg = "#88846F" }
|
"comment" = { fg = "#88846F" }
|
||||||
|
|
||||||
"string" = { fg = "#e6db74" }
|
"string" = { fg = "#e6db74" }
|
||||||
|
"constant.character" = { fg = "#e6db74" }
|
||||||
"string.regexp" = { fg = "regex" }
|
"string.regexp" = { fg = "regex" }
|
||||||
"number" = { fg = "#ae81ff" }
|
"constant.numeric" = { fg = "#ae81ff" }
|
||||||
"escape" = { fg = "#ae81ff" }
|
"constant.character.escape" = { fg = "#ae81ff" }
|
||||||
|
|
||||||
"ui.background" = { fg = "text", bg = "background" }
|
"ui.background" = { fg = "text", bg = "background" }
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
# nord9 - operator, tags, units, punctuations
|
# nord9 - operator, tags, units, punctuations
|
||||||
"punctuation.delimiter" = "nord9"
|
"punctuation.delimiter" = "nord9"
|
||||||
"operator" = { fg = "nord9" }
|
"operator" = { fg = "nord9" }
|
||||||
"property" = "nord9"
|
"variable.other.member" = "nord9"
|
||||||
|
|
||||||
# nord10 - keywords, special
|
# nord10 - keywords, special
|
||||||
"keyword" = { fg = "nord10" }
|
"keyword" = { fg = "nord10" }
|
||||||
|
@ -76,13 +76,13 @@
|
||||||
|
|
||||||
# nord13 - warnings, escape characters, regex
|
# nord13 - warnings, escape characters, regex
|
||||||
"warning" = "nord13"
|
"warning" = "nord13"
|
||||||
"escape" = { fg = "nord13" }
|
"constant.character.escape" = { fg = "nord13" }
|
||||||
|
|
||||||
# nord14 - strings
|
# nord14 - strings
|
||||||
"string" = "nord14"
|
"string" = "nord14"
|
||||||
|
|
||||||
# nord15 - integer, floating point
|
# nord15 - integer, floating point
|
||||||
"number" = "nord15"
|
"constant.numeric" = "nord15"
|
||||||
|
|
||||||
[palette]
|
[palette]
|
||||||
nord0 = "#2e3440"
|
nord0 = "#2e3440"
|
||||||
|
|
|
@ -16,14 +16,14 @@
|
||||||
"operator" = "rose"
|
"operator" = "rose"
|
||||||
"ui.text.focus" = { fg = "base05" }
|
"ui.text.focus" = { fg = "base05" }
|
||||||
"variable" = "text"
|
"variable" = "text"
|
||||||
"number" = "iris"
|
"constant.numeric" = "iris"
|
||||||
"constant" = "gold"
|
"constant" = "gold"
|
||||||
"attributes" = "gold"
|
"attributes" = "gold"
|
||||||
"type" = "foam"
|
"type" = "foam"
|
||||||
"ui.cursor.match" = { fg = "gold", modifiers = ["underlined"] }
|
"ui.cursor.match" = { fg = "gold", modifiers = ["underlined"] }
|
||||||
"string" = "gold"
|
"string" = "gold"
|
||||||
"property" = "foam"
|
"property" = "foam"
|
||||||
"escape" = "subtle"
|
"constant.character.escape" = "subtle"
|
||||||
"function" = "rose"
|
"function" = "rose"
|
||||||
"function.builtin" = "rose"
|
"function.builtin" = "rose"
|
||||||
"function.method" = "foam"
|
"function.method" = "foam"
|
||||||
|
|
|
@ -6,7 +6,7 @@ punctuation = "lavender"
|
||||||
"punctuation.delimiter" = "lavender"
|
"punctuation.delimiter" = "lavender"
|
||||||
operator = "lilac"
|
operator = "lilac"
|
||||||
special = "honey"
|
special = "honey"
|
||||||
property = "white"
|
variable.other.member = "white"
|
||||||
variable = "lavender"
|
variable = "lavender"
|
||||||
# variable = "almond" # TODO: metavariables only
|
# variable = "almond" # TODO: metavariables only
|
||||||
# "variable.parameter" = { fg = "lavender", modifiers = ["underlined"] }
|
# "variable.parameter" = { fg = "lavender", modifiers = ["underlined"] }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue