mirror of https://github.com/helix-editor/helix
Merge branch 'master' into great_line_ending_and_cursor_range_cleanup
commit
a77274e8bb
File diff suppressed because it is too large
Load Diff
@ -1,213 +1,336 @@
|
|||||||
; Identifier conventions
|
; -------
|
||||||
|
; Tree-Sitter doesn't allow overrides in regards to captures,
|
||||||
|
; though it is possible to affect the child node of a captured
|
||||||
|
; node. Thus, the approach here is to flip the order so that
|
||||||
|
; overrides are unnecessary.
|
||||||
|
; -------
|
||||||
|
|
||||||
|
|
||||||
; Assume all-caps names are constants
|
|
||||||
((identifier) @constant
|
|
||||||
(#match? @constant "^[A-Z][A-Z\\d_]+$'"))
|
|
||||||
|
|
||||||
; Assume other uppercase names are enum constructors
|
; -------
|
||||||
((identifier) @constructor
|
; Types
|
||||||
(#match? @constructor "^[A-Z]"))
|
; -------
|
||||||
|
|
||||||
; Assume that uppercase names in paths are types
|
; ---
|
||||||
(mod_item
|
; Primitives
|
||||||
name: (identifier) @namespace)
|
; ---
|
||||||
(scoped_identifier
|
|
||||||
path: (identifier) @namespace)
|
|
||||||
(scoped_identifier
|
|
||||||
(scoped_identifier
|
|
||||||
name: (identifier) @namespace))
|
|
||||||
(scoped_type_identifier
|
|
||||||
path: (identifier) @namespace)
|
|
||||||
(scoped_type_identifier
|
|
||||||
(scoped_identifier
|
|
||||||
name: (identifier) @namespace))
|
|
||||||
|
|
||||||
((scoped_identifier
|
(escape_sequence) @escape
|
||||||
path: (identifier) @type)
|
(primitive_type) @type.builtin
|
||||||
(#match? @type "^[A-Z]"))
|
(boolean_literal) @constant.builtin
|
||||||
((scoped_identifier
|
[
|
||||||
path: (scoped_identifier
|
(integer_literal)
|
||||||
name: (identifier) @type))
|
(float_literal)
|
||||||
(#match? @type "^[A-Z]"))
|
] @number
|
||||||
|
[
|
||||||
|
(char_literal)
|
||||||
|
(string_literal)
|
||||||
|
(raw_string_literal)
|
||||||
|
] @string
|
||||||
|
[
|
||||||
|
(line_comment)
|
||||||
|
(block_comment)
|
||||||
|
] @comment
|
||||||
|
|
||||||
; Namespaces
|
; ---
|
||||||
|
; Extraneous
|
||||||
|
; ---
|
||||||
|
|
||||||
(crate) @namespace
|
(self) @variable.builtin
|
||||||
(extern_crate_declaration
|
(enum_variant (identifier) @type.enum.variant)
|
||||||
(crate)
|
|
||||||
name: (identifier) @namespace)
|
|
||||||
(scoped_use_list
|
|
||||||
path: (identifier) @namespace)
|
|
||||||
(scoped_use_list
|
|
||||||
path: (scoped_identifier
|
|
||||||
(identifier) @namespace))
|
|
||||||
(use_list (scoped_identifier (identifier) @namespace . (_)))
|
|
||||||
|
|
||||||
; Function calls
|
(field_initializer
|
||||||
|
(field_identifier) @property)
|
||||||
|
(shorthand_field_initializer) @variable
|
||||||
|
(shorthand_field_identifier) @variable
|
||||||
|
|
||||||
(call_expression
|
(lifetime
|
||||||
function: (identifier) @function)
|
"'" @label
|
||||||
(call_expression
|
(identifier) @label)
|
||||||
function: (field_expression
|
(loop_label
|
||||||
field: (field_identifier) @function.method))
|
(identifier) @type)
|
||||||
(call_expression
|
|
||||||
function: (scoped_identifier
|
|
||||||
"::"
|
|
||||||
name: (identifier) @function))
|
|
||||||
|
|
||||||
(generic_function
|
; ---
|
||||||
function: (identifier) @function)
|
; Punctuation
|
||||||
(generic_function
|
; ---
|
||||||
function: (scoped_identifier
|
|
||||||
name: (identifier) @function))
|
|
||||||
(generic_function
|
|
||||||
function: (field_expression
|
|
||||||
field: (field_identifier) @function.method))
|
|
||||||
|
|
||||||
(macro_invocation
|
[
|
||||||
macro: (identifier) @function.macro
|
"::"
|
||||||
"!" @function.macro)
|
"."
|
||||||
(macro_invocation
|
";"
|
||||||
macro: (scoped_identifier
|
] @punctuation.delimiter
|
||||||
(identifier) @function.macro .))
|
|
||||||
|
|
||||||
; (metavariable) @variable
|
[
|
||||||
(metavariable) @function.macro
|
"("
|
||||||
|
")"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
] @punctuation.bracket
|
||||||
|
(type_arguments
|
||||||
|
[
|
||||||
|
"<"
|
||||||
|
">"
|
||||||
|
] @punctuation.bracket)
|
||||||
|
(type_parameters
|
||||||
|
[
|
||||||
|
"<"
|
||||||
|
">"
|
||||||
|
] @punctuation.bracket)
|
||||||
|
|
||||||
"$" @function.macro
|
; ---
|
||||||
|
; Parameters
|
||||||
|
; ---
|
||||||
|
|
||||||
; Function definitions
|
(parameter
|
||||||
|
pattern: (identifier) @variable.parameter)
|
||||||
|
(closure_parameters
|
||||||
|
(identifier) @variable.parameter)
|
||||||
|
|
||||||
(function_item (identifier) @function)
|
|
||||||
(function_signature_item (identifier) @function)
|
|
||||||
|
|
||||||
; Other identifiers
|
|
||||||
|
|
||||||
(type_identifier) @type
|
; -------
|
||||||
(primitive_type) @type.builtin
|
; Keywords
|
||||||
(field_identifier) @property
|
; -------
|
||||||
|
|
||||||
(line_comment) @comment
|
(for_expression
|
||||||
(block_comment) @comment
|
"for" @keyword.control)
|
||||||
|
((identifier) @keyword.control
|
||||||
|
(#match? @keyword.control "^yield$"))
|
||||||
|
[
|
||||||
|
"while"
|
||||||
|
"loop"
|
||||||
|
"in"
|
||||||
|
"break"
|
||||||
|
"continue"
|
||||||
|
|
||||||
"(" @punctuation.bracket
|
"match"
|
||||||
")" @punctuation.bracket
|
"if"
|
||||||
"[" @punctuation.bracket
|
"else"
|
||||||
"]" @punctuation.bracket
|
"return"
|
||||||
|
|
||||||
|
"await"
|
||||||
|
] @keyword.control
|
||||||
|
|
||||||
|
[
|
||||||
|
(crate)
|
||||||
|
(super)
|
||||||
|
"as"
|
||||||
|
"use"
|
||||||
|
"pub"
|
||||||
|
"mod"
|
||||||
|
"extern"
|
||||||
|
|
||||||
|
"fn"
|
||||||
|
"struct"
|
||||||
|
"enum"
|
||||||
|
"impl"
|
||||||
|
"where"
|
||||||
|
"trait"
|
||||||
|
"for"
|
||||||
|
|
||||||
|
"type"
|
||||||
|
"union"
|
||||||
|
"unsafe"
|
||||||
|
"default"
|
||||||
|
"macro_rules!"
|
||||||
|
|
||||||
|
"let"
|
||||||
|
"ref"
|
||||||
|
"move"
|
||||||
|
|
||||||
|
"dyn"
|
||||||
|
"static"
|
||||||
|
"const"
|
||||||
|
"async"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
(type_arguments
|
|
||||||
"<" @punctuation.bracket
|
|
||||||
">" @punctuation.bracket)
|
|
||||||
(type_parameters
|
|
||||||
"<" @punctuation.bracket
|
|
||||||
">" @punctuation.bracket)
|
|
||||||
|
|
||||||
"::" @punctuation.delimiter
|
|
||||||
"." @punctuation.delimiter
|
|
||||||
";" @punctuation.delimiter
|
|
||||||
|
|
||||||
(parameter (identifier) @variable.parameter)
|
|
||||||
(closure_parameters (_) @variable.parameter)
|
|
||||||
|
|
||||||
(lifetime (identifier) @label)
|
|
||||||
|
|
||||||
"async" @keyword
|
|
||||||
"break" @keyword
|
|
||||||
"const" @keyword
|
|
||||||
"continue" @keyword
|
|
||||||
(crate) @keyword
|
|
||||||
"default" @keyword
|
|
||||||
"dyn" @keyword
|
|
||||||
"else" @keyword
|
|
||||||
"enum" @keyword
|
|
||||||
"extern" @keyword
|
|
||||||
"fn" @keyword
|
|
||||||
"for" @keyword
|
|
||||||
"if" @keyword
|
|
||||||
"impl" @keyword
|
|
||||||
"in" @keyword
|
|
||||||
"let" @keyword
|
|
||||||
"let" @keyword
|
|
||||||
"loop" @keyword
|
|
||||||
"macro_rules!" @keyword
|
|
||||||
"match" @keyword
|
|
||||||
"mod" @keyword
|
|
||||||
"move" @keyword
|
|
||||||
"pub" @keyword
|
|
||||||
"ref" @keyword
|
|
||||||
"return" @keyword
|
|
||||||
"static" @keyword
|
|
||||||
"struct" @keyword
|
|
||||||
"trait" @keyword
|
|
||||||
"type" @keyword
|
|
||||||
"union" @keyword
|
|
||||||
"unsafe" @keyword
|
|
||||||
"use" @keyword
|
|
||||||
"where" @keyword
|
|
||||||
"while" @keyword
|
|
||||||
(mutable_specifier) @keyword.mut
|
(mutable_specifier) @keyword.mut
|
||||||
(use_list (self) @keyword)
|
|
||||||
(scoped_use_list (self) @keyword)
|
|
||||||
(scoped_identifier (self) @keyword)
|
|
||||||
(super) @keyword
|
|
||||||
"as" @keyword
|
|
||||||
|
|
||||||
(self) @variable.builtin
|
|
||||||
|
|
||||||
[
|
|
||||||
(char_literal)
|
|
||||||
(string_literal)
|
|
||||||
(raw_string_literal)
|
|
||||||
] @string
|
|
||||||
|
|
||||||
(boolean_literal) @constant.builtin
|
; -------
|
||||||
(integer_literal) @number
|
; Guess Other Types
|
||||||
(float_literal) @number
|
; -------
|
||||||
|
|
||||||
(escape_sequence) @escape
|
((identifier) @constant
|
||||||
|
(#match? @constant "^[A-Z][A-Z\\d_]+$"))
|
||||||
|
|
||||||
|
; ---
|
||||||
|
; PascalCase identifiers in call_expressions (e.g. `Ok()`)
|
||||||
|
; are assumed to be enum constructors.
|
||||||
|
; ---
|
||||||
|
|
||||||
|
(call_expression
|
||||||
|
function: [
|
||||||
|
((identifier) @type.variant
|
||||||
|
(#match? @type.variant "^[A-Z]"))
|
||||||
|
(scoped_identifier
|
||||||
|
name: ((identifier) @type.variant
|
||||||
|
(#match? @type.variant "^[A-Z]")))
|
||||||
|
])
|
||||||
|
|
||||||
|
; ---
|
||||||
|
; Assume that types in match arms are enums and not
|
||||||
|
; tuple structs. Same for `if let` expressions.
|
||||||
|
; ---
|
||||||
|
|
||||||
|
(match_pattern
|
||||||
|
(scoped_identifier
|
||||||
|
name: (identifier) @constructor))
|
||||||
|
(tuple_struct_pattern
|
||||||
|
type: [
|
||||||
|
((identifier) @constructor)
|
||||||
|
(scoped_identifier
|
||||||
|
name: (identifier) @constructor)
|
||||||
|
])
|
||||||
|
(struct_pattern
|
||||||
|
type: [
|
||||||
|
((type_identifier) @constructor)
|
||||||
|
(scoped_type_identifier
|
||||||
|
name: (type_identifier) @constructor)
|
||||||
|
])
|
||||||
|
|
||||||
|
; ---
|
||||||
|
; Other PascalCase identifiers are assumed to be structs.
|
||||||
|
; ---
|
||||||
|
|
||||||
|
((identifier) @type
|
||||||
|
(#match? @type "^[A-Z]"))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; -------
|
||||||
|
; Functions
|
||||||
|
; -------
|
||||||
|
|
||||||
|
(call_expression
|
||||||
|
function: [
|
||||||
|
((identifier) @function)
|
||||||
|
(scoped_identifier
|
||||||
|
name: (identifier) @function)
|
||||||
|
(field_expression
|
||||||
|
field: (field_identifier) @function)
|
||||||
|
])
|
||||||
|
(generic_function
|
||||||
|
function: [
|
||||||
|
((identifier) @function)
|
||||||
|
(scoped_identifier
|
||||||
|
name: (identifier) @function)
|
||||||
|
(field_expression
|
||||||
|
field: (field_identifier) @function.method)
|
||||||
|
])
|
||||||
|
|
||||||
|
(function_item
|
||||||
|
name: (identifier) @function)
|
||||||
|
|
||||||
|
; ---
|
||||||
|
; Macros
|
||||||
|
; ---
|
||||||
|
|
||||||
|
(meta_item
|
||||||
|
(identifier) @attribute)
|
||||||
(attribute_item) @attribute
|
(attribute_item) @attribute
|
||||||
(inner_attribute_item) @attribute
|
(inner_attribute_item) @attribute
|
||||||
|
|
||||||
|
(macro_definition
|
||||||
|
name: (identifier) @function.macro)
|
||||||
|
(macro_invocation
|
||||||
|
macro: [
|
||||||
|
((identifier) @function.macro)
|
||||||
|
(scoped_identifier
|
||||||
|
name: (identifier) @function.macro)
|
||||||
|
]
|
||||||
|
"!" @function.macro)
|
||||||
|
|
||||||
|
(metavariable) @variable.parameter
|
||||||
|
(fragment_specifier) @variable.parameter
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; -------
|
||||||
|
; Operators
|
||||||
|
; -------
|
||||||
|
|
||||||
[
|
[
|
||||||
"*"
|
"*"
|
||||||
"'"
|
"'"
|
||||||
"->"
|
"->"
|
||||||
"=>"
|
"=>"
|
||||||
"<="
|
"<="
|
||||||
"="
|
"="
|
||||||
"=="
|
"=="
|
||||||
"!"
|
"!"
|
||||||
"!="
|
"!="
|
||||||
"%"
|
"%"
|
||||||
"%="
|
"%="
|
||||||
"&"
|
"&"
|
||||||
"&="
|
"&="
|
||||||
"&&"
|
"&&"
|
||||||
"|"
|
"|"
|
||||||
"|="
|
"|="
|
||||||
"||"
|
"||"
|
||||||
"^"
|
"^"
|
||||||
"^="
|
"^="
|
||||||
"*"
|
"*"
|
||||||
"*="
|
"*="
|
||||||
"-"
|
"-"
|
||||||
"-="
|
"-="
|
||||||
"+"
|
"+"
|
||||||
"+="
|
"+="
|
||||||
"/"
|
"/"
|
||||||
"/="
|
"/="
|
||||||
">"
|
">"
|
||||||
"<"
|
"<"
|
||||||
">="
|
">="
|
||||||
">>"
|
">>"
|
||||||
"<<"
|
"<<"
|
||||||
">>="
|
">>="
|
||||||
"@"
|
"@"
|
||||||
".."
|
".."
|
||||||
"..="
|
"..="
|
||||||
"'"
|
"'"
|
||||||
] @operator
|
] @operator
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; -------
|
||||||
|
; Paths
|
||||||
|
; -------
|
||||||
|
|
||||||
|
(use_declaration
|
||||||
|
argument: (identifier) @namespace)
|
||||||
|
(use_wildcard
|
||||||
|
(identifier) @namespace)
|
||||||
|
(extern_crate_declaration
|
||||||
|
name: (identifier) @namespace)
|
||||||
|
(mod_item
|
||||||
|
name: (identifier) @namespace)
|
||||||
|
(scoped_use_list
|
||||||
|
path: (identifier)? @namespace)
|
||||||
|
(use_list
|
||||||
|
(identifier) @namespace)
|
||||||
|
(use_as_clause
|
||||||
|
path: (identifier)? @namespace
|
||||||
|
alias: (identifier) @namespace)
|
||||||
|
|
||||||
|
; ---
|
||||||
|
; Remaining Paths
|
||||||
|
; ---
|
||||||
|
|
||||||
|
(scoped_identifier
|
||||||
|
path: (identifier)? @namespace
|
||||||
|
name: (identifier) @namespace)
|
||||||
|
(scoped_type_identifier
|
||||||
|
path: (identifier) @namespace)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; -------
|
||||||
|
; Remaining Identifiers
|
||||||
|
; -------
|
||||||
|
|
||||||
"?" @special
|
"?" @special
|
||||||
|
|
||||||
|
(type_identifier) @type
|
||||||
|
(identifier) @variable
|
||||||
|
(field_identifier) @variable
|
||||||
|
@ -0,0 +1,80 @@
|
|||||||
|
# Author: Shafkath Shuhan <shafkathshuhannyc@gmail.com>
|
||||||
|
|
||||||
|
"namespace" = { fg = "type" }
|
||||||
|
"module" = { fg = "type" }
|
||||||
|
"type" = { fg = "type" }
|
||||||
|
"type.builtin" = { fg = "type" }
|
||||||
|
|
||||||
|
"keyword" = { fg = "keyword" }
|
||||||
|
"keyword.directive" = { fg = "keyword" }
|
||||||
|
"function.macro" = { fg = "keyword" }
|
||||||
|
"variable.builtin" = { fg = "keyword" }
|
||||||
|
"label" = { fg = "keyword" }
|
||||||
|
"constant.builtin" = { fg = "keyword" }
|
||||||
|
|
||||||
|
"punctuation" = { fg = "text" }
|
||||||
|
"punctuation.delimiter" = { fg = "text" }
|
||||||
|
|
||||||
|
"keyword.control" = { fg = "special" }
|
||||||
|
"special" = { fg = "text" }
|
||||||
|
"operator" = { fg = "text" }
|
||||||
|
|
||||||
|
"variable" = { fg = "variable" }
|
||||||
|
"variable.parameter" = { fg = "variable" }
|
||||||
|
"property" = { fg = "variable" }
|
||||||
|
|
||||||
|
"attribute" = { fg = "fn_declaration" }
|
||||||
|
"function" = { fg = "fn_declaration" }
|
||||||
|
"function.builtin" = { fg = "fn_declaration" }
|
||||||
|
|
||||||
|
"comment" = { fg = "#6A9955" }
|
||||||
|
|
||||||
|
"constant" = { fg = "constant" }
|
||||||
|
"type.enum.variant" = { fg = "constant" }
|
||||||
|
"constructor" = { fg = "constant" }
|
||||||
|
|
||||||
|
"string" = { fg = "#ce9178" }
|
||||||
|
"number" = { fg = "#b5cea8" }
|
||||||
|
"escape" = { fg = "#d7ba7d" }
|
||||||
|
|
||||||
|
"ui.background" = { fg = "#d4d4d4", bg = "#1e1e1e" }
|
||||||
|
|
||||||
|
"ui.help" = { bg = "widget" }
|
||||||
|
"ui.popup" = { bg = "widget" }
|
||||||
|
"ui.window" = { bg = "widget" }
|
||||||
|
"ui.menu.selected" = { bg = "widget" }
|
||||||
|
|
||||||
|
"ui.cursor" = { fg = "cursor", modifiers = ["reversed"] }
|
||||||
|
"ui.cursor.primary" = { fg = "cursor", modifiers = ["reversed"] }
|
||||||
|
"ui.cursor.match" = { fg = "cursor", modifiers = ['underlined'] }
|
||||||
|
|
||||||
|
"ui.selection" = { bg = "#3a3d41" }
|
||||||
|
"ui.selection.primary" = { bg = "#add6ff26" }
|
||||||
|
|
||||||
|
"ui.linenr" = { fg = "#858585" }
|
||||||
|
"ui.linenr.selected" = { fg = "#c6c6c6" }
|
||||||
|
|
||||||
|
"ui.statusline" = { fg = "#ffffff", bg = "#007acc" }
|
||||||
|
"ui.statusline.inactive" = { fg = "#ffffff", bg = "#007acc" }
|
||||||
|
|
||||||
|
"ui.text" = { fg = "text", bg = "background" }
|
||||||
|
"ui.text.focus" = { fg = "#ffffff" }
|
||||||
|
|
||||||
|
"warning" = { fg = "#cca700" }
|
||||||
|
"error" = { fg = "#f48771" }
|
||||||
|
"info" = { fg = "#75beff" }
|
||||||
|
"hint" = { fg = "#eeeeeeb3" }
|
||||||
|
|
||||||
|
[palette]
|
||||||
|
type = "#4EC9B0"
|
||||||
|
keyword = "#569CD6"
|
||||||
|
regex = "#CE9178"
|
||||||
|
special = "#C586C0"
|
||||||
|
variable = "#9CDCFE"
|
||||||
|
fn_declaration = "#DCDCAA"
|
||||||
|
constant = "#4FC1FF"
|
||||||
|
|
||||||
|
background = "#1e1e1e"
|
||||||
|
text = "#d4d4d4"
|
||||||
|
cursor = "#a6a6a6"
|
||||||
|
widget = "#252526"
|
@ -1,68 +1,81 @@
|
|||||||
"attribute" = "#dbbfef" # lilac
|
attribute = "lilac"
|
||||||
"keyword" = "#eccdba" # almond
|
keyword = "almond"
|
||||||
"keyword.directive" = "#dbbfef" # lilac -- preprocessor comments (#if in C)
|
"keyword.directive" = "lilac" # -- preprocessor comments (#if in C)
|
||||||
"namespace" = "#dbbfef" # lilac
|
namespace = "lilac"
|
||||||
"punctuation" = "#a4a0e8" # lavender
|
punctuation = "lavender"
|
||||||
"punctuation.delimiter" = "#a4a0e8" # lavender
|
"punctuation.delimiter" = "lavender"
|
||||||
"operator" = "#dbbfef" # lilac
|
operator = "lilac"
|
||||||
"special" = "#efba5d" # honey
|
special = "honey"
|
||||||
# "property" = "#a4a0e8" # lavender
|
property = "white"
|
||||||
"property" = "#ffffff" # white
|
variable = "lavender"
|
||||||
"variable" = "#a4a0e8" # lavender
|
# variable = "almond" # TODO: metavariables only
|
||||||
# "variable" = "#eccdba" # almond TODO: metavariables only
|
"variable.parameter" = "lavender"
|
||||||
"variable.parameter" = "#a4a0e8" # lavender
|
"variable.builtin" = "mint"
|
||||||
# TODO distinguish type from type.builtin?
|
type = "white"
|
||||||
"type" = "#ffffff" # white
|
"type.builtin" = "white" # TODO: distinguish?
|
||||||
"type.builtin" = "#ffffff" # white
|
constructor = "lilac"
|
||||||
"constructor" = "#dbbfef" # lilac
|
function = "white"
|
||||||
"function" = "#ffffff" # white
|
"function.macro" = "lilac"
|
||||||
"function.macro" = "#dbbfef" # lilac
|
"function.builtin" = "white"
|
||||||
"function.builtin" = "#ffffff" # white
|
comment = "sirocco"
|
||||||
"comment" = "#697C81" # sirocco
|
constant = "white"
|
||||||
"variable.builtin" = "#9ff28f" # mint
|
"constant.builtin" = "white"
|
||||||
"constant" = "#ffffff" # white
|
string = "silver"
|
||||||
"constant.builtin" = "#ffffff" # white
|
number = "chamois"
|
||||||
"string" = "#cccccc" # silver
|
escape = "honey"
|
||||||
"number" = "#e8dca0" # chamois
|
|
||||||
"escape" = "#efba5d" # honey
|
|
||||||
# used for lifetimes
|
# used for lifetimes
|
||||||
"label" = "#efba5d" # honey
|
label = "honey"
|
||||||
|
|
||||||
# TODO: diferentiate number builtin
|
|
||||||
# TODO: diferentiate doc comment
|
# TODO: diferentiate doc comment
|
||||||
# TODO: variable as lilac
|
|
||||||
# TODO: mod/use statements as white
|
|
||||||
# TODO: mod stuff as chamois
|
|
||||||
#
|
|
||||||
# concat (ERROR) @syntax-error and "MISSING ;" selectors for errors
|
# concat (ERROR) @syntax-error and "MISSING ;" selectors for errors
|
||||||
|
|
||||||
"module" = "#ff0000"
|
module = "#ff0000"
|
||||||
|
|
||||||
"ui.background" = { bg = "#3b224c" } # midnight
|
"ui.background" = { bg = "midnight" }
|
||||||
"ui.linenr" = { fg = "#5a5977" } # comet
|
"ui.linenr" = { fg = "comet" }
|
||||||
"ui.linenr.selected" = { fg = "#dbbfef" } # lilac
|
"ui.linenr.selected" = { fg = "lilac" }
|
||||||
"ui.statusline" = { fg = "#dbbfef", bg = "#281733" } # revolver
|
"ui.statusline" = { fg = "lilac", bg = "revolver" }
|
||||||
"ui.statusline.inactive" = { fg = "#a4a0e8", bg = "#281733" } # revolver
|
"ui.statusline.inactive" = { fg = "lavender", bg = "revolver" }
|
||||||
"ui.popup" = { bg = "#281733" } # revolver
|
"ui.popup" = { bg = "revolver" }
|
||||||
"ui.window" = { fg = "#452859" } # bossa nova
|
"ui.window" = { fg = "bossanova" }
|
||||||
"ui.help" = { bg = "#7958DC", fg = "#171452" }
|
"ui.help" = { bg = "#7958DC", fg = "#171452" }
|
||||||
|
|
||||||
"ui.text" = { fg = "#a4a0e8" } # lavender
|
"ui.text" = { fg = "lavender" }
|
||||||
"ui.text.focus" = { fg = "#dbbfef" } # lilac
|
"ui.text.focus" = { fg = "lilac" }
|
||||||
|
|
||||||
"ui.selection" = { bg = "#540099" }
|
"ui.selection" = { bg = "#540099" }
|
||||||
"ui.selection.primary" = { bg = "#540099" }
|
"ui.selection.primary" = { bg = "#540099" }
|
||||||
# TODO: namespace ui.cursor as ui.selection.cursor?
|
# TODO: namespace ui.cursor as ui.selection.cursor?
|
||||||
"ui.cursor.select" = { bg = "#6F44F0" }
|
"ui.cursor.select" = { bg = "delta" }
|
||||||
"ui.cursor.insert" = { bg = "#ffffff" }
|
"ui.cursor.insert" = { bg = "white" }
|
||||||
"ui.cursor.match" = { fg = "#212121", bg = "#6C6999" }
|
"ui.cursor.match" = { fg = "#212121", bg = "#6C6999" }
|
||||||
"ui.cursor" = { modifiers = ["reversed"] }
|
"ui.cursor" = { modifiers = ["reversed"] }
|
||||||
|
|
||||||
"ui.menu.selected" = { fg = "#281733", bg = "#ffffff" } # revolver
|
"ui.menu.selected" = { fg = "revolver", bg = "white" }
|
||||||
|
|
||||||
"diagnostic" = { modifiers = ["underlined"] }
|
diagnostic = { modifiers = ["underlined"] }
|
||||||
|
|
||||||
"warning" = "#ffcd1c"
|
warning = "lightning"
|
||||||
"error" = "#f47868"
|
error = "apricot"
|
||||||
"info" = "#6F44F0"
|
info = "delta"
|
||||||
"hint" = "#cccccc"
|
hint = "silver"
|
||||||
|
|
||||||
|
[palette]
|
||||||
|
white = "#ffffff"
|
||||||
|
lilac = "#dbbfef"
|
||||||
|
lavender = "#a4a0e8"
|
||||||
|
comet = "#5a5977"
|
||||||
|
bossanova = "#452859"
|
||||||
|
midnight = "#3b224c"
|
||||||
|
revolver = "#281733"
|
||||||
|
|
||||||
|
silver = "#cccccc"
|
||||||
|
sirocco = "#697C81"
|
||||||
|
mint = "#9ff28f"
|
||||||
|
almond = "#eccdba"
|
||||||
|
chamois = "#E8DCA0"
|
||||||
|
honey = "#efba5d"
|
||||||
|
|
||||||
|
apricot = "#f47868"
|
||||||
|
lightning = "#ffcd1c"
|
||||||
|
delta = "#6F44F0"
|
||||||
|
Loading…
Reference in New Issue