forked from Mirrors/helix
Merge branch 'seperate_code_action'
commit
8b789b6b86
@ -0,0 +1,21 @@
|
||||
; inherits: wat
|
||||
|
||||
[
|
||||
"assert_return"
|
||||
"assert_trap"
|
||||
"assert_exhaustion"
|
||||
"assert_malformed"
|
||||
"assert_invalid"
|
||||
"assert_unlinkable"
|
||||
"assert_trap"
|
||||
|
||||
"invoke"
|
||||
"get"
|
||||
|
||||
"script"
|
||||
"input"
|
||||
"output"
|
||||
|
||||
"binary"
|
||||
"quote"
|
||||
] @keyword
|
@ -0,0 +1,17 @@
|
||||
["module" "func" "param" "result" "type" "memory" "elem" "data" "table" "global"] @keyword
|
||||
|
||||
["import" "export"] @keyword.control.import
|
||||
|
||||
["local"] @keyword.storage.type
|
||||
|
||||
[(name) (string)] @string
|
||||
|
||||
(identifier) @function
|
||||
|
||||
[(comment_block) (comment_line)] @comment
|
||||
|
||||
[(nat) (float) (align_offset_value)] @constant.numeric.integer
|
||||
|
||||
(value_type) @type
|
||||
|
||||
["(" ")"] @punctuation.bracket
|
@ -0,0 +1,105 @@
|
||||
# GreasySlug : dark high contrast <9619abgoni@gmail.com>
|
||||
|
||||
# Interface
|
||||
"ui.background" = { bg = "black" }
|
||||
"ui.window" = { fg = "aqua" }
|
||||
"special" = "orange" # file picker fuzzy match
|
||||
"ui.background.separator" = { fg = "white" }
|
||||
"ui.text" = "white"
|
||||
"ui.text.focus" = { modifiers = ["reversed"] } # file picker selected
|
||||
|
||||
"ui.virtual.whitespace" = "gray"
|
||||
"ui.virtual.ruler" = { fg = "gray", bg = "white", modifiers = ["reversed"] }
|
||||
"ui.virtual.indent-guide" = "white"
|
||||
|
||||
"ui.statusline" = { fg = "white", bg = "deep_blue" }
|
||||
"ui.statusline.inactive" = { fg = "gray" }
|
||||
"ui.statusline.normal" = { fg = "black", bg = "aqua" }
|
||||
"ui.statusline.insert" = { fg = "black", bg = "orange" }
|
||||
"ui.statusline.select" = { fg = "black", bg = "purple" }
|
||||
# "ui.statusline.separator" = { fg = "aqua", bg = "white" }
|
||||
|
||||
"ui.cursor" = { fg = "black", bg = "white" }
|
||||
"ui.cursor.insert" = { fg = "black", bg = "white" }
|
||||
"ui.cursor.select" = { fg = "black", bg = "white" }
|
||||
"ui.cursor.match" = { bg = "white", modifiers = ["dim"] }
|
||||
"ui.cursor.primary" = { fg = "black", bg = "white", modifiers = ["slow_blink"] }
|
||||
|
||||
"ui.cursor.secondary" = "white"
|
||||
"ui.cursorline.primary" = { fg = "orange", modifiers = ["underlined"] }
|
||||
"ui.cursorline.secondary" = { fg = "orange", modifiers = ["underlined"] }
|
||||
"ui.selection" = { fg = "deep_blue", bg = "white" }
|
||||
|
||||
"ui.menu" = { fg = "white", bg = "deep_blue" }
|
||||
"ui.menu.selected" = { fg = "orange", modifiers = ["underlined"] }
|
||||
"ui.menu.scroll" = { fg = "aqua", bg = "black" }
|
||||
"ui.help" = { fg = "white", bg = "deep_blue" }
|
||||
|
||||
"ui.popup" = { bg = "deep_blue" }
|
||||
"ui.popup.info" = { fg = "white", bg = "deep_blue" }
|
||||
|
||||
"ui.gutter" = { bg = "black" }
|
||||
"ui.linenr" = { fg = "white", bg = "black" }
|
||||
"ui.linenr.selected" = { fg = "orange", bg = "black", modifiers = ["bold"] }
|
||||
|
||||
# Diagnostic
|
||||
"diagnostic" = "white"
|
||||
"diagnostic.info" = { bg = "white", modifiers = ["underlined"] }
|
||||
"diagnostic.hint" = { fg = "yellow", modifiers = ["underlined"] }
|
||||
"diagnostic.warning" = { fg = "orange", modifiers = ["underlined"] }
|
||||
"diagnostic.error" = { fg = "red", modifiers = ["underlined"] }
|
||||
"info" = "white"
|
||||
"hint" = "yellow"
|
||||
"warning" = "orange"
|
||||
"error" = "red"
|
||||
"debug" = "red"
|
||||
|
||||
"diff.plus" = "green"
|
||||
"diff.delta" ="blue"
|
||||
"diff.minus" = "pink"
|
||||
|
||||
# Syntax high light
|
||||
"type" = { fg = "emerald_green" }
|
||||
"type.buildin" = "emerald_green"
|
||||
"comment" = { fg = "white" }
|
||||
"operator" = "white"
|
||||
"variable" = { fg = "aqua" }
|
||||
"variable.other.member" = "brown"
|
||||
"constant" = "aqua"
|
||||
"constant.numeric" = "emerald_green"
|
||||
"attributes" = { fg = "blue" }
|
||||
"namespace" = "blue"
|
||||
"string" = "brown"
|
||||
"string.special.url" = { fg = "brown", modifiers =["underlined"]}
|
||||
"constant.character.escape" = "yellow"
|
||||
"constructor" = "aqua"
|
||||
"keyword" = { fg = "blue", modifiers = ["underlined"] }
|
||||
"keyword.control" = "purple"
|
||||
"function" = "yellow"
|
||||
"label" = "blue"
|
||||
|
||||
# Markup
|
||||
"markup.heading" = { fg = "yellow", modifiers = ["bold", "underlined"] }
|
||||
"markup.list" = { fg = "pink" }
|
||||
"markup.bold" = { fg = "emerald_green", modifiers = ["bold"] }
|
||||
"markup.italic" = { fg = "blue", modifiers = ["italic"] }
|
||||
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] }
|
||||
"markup.link.text" = "pink"
|
||||
"markup.quote" = "yellow"
|
||||
"markup.raw" = "brown"
|
||||
|
||||
[palette]
|
||||
black = "#000000"
|
||||
gray = "#585858"
|
||||
white = "#ffffff"
|
||||
blue = "#66a4ff"
|
||||
deep_blue = "#142743"
|
||||
aqua = "#6fc3df"
|
||||
purple = "#c586c0"
|
||||
red = "#b65f5f"
|
||||
pink = "#ff5c8d"
|
||||
orange = "#f38518"
|
||||
brown = "#ce9178"
|
||||
yellow = "#cedc84"
|
||||
green = "#427a2d"
|
||||
emerald_green = "#4ec9b0"
|
@ -0,0 +1,97 @@
|
||||
# Author : nuid32 <lvkuzvesov@proton.me>
|
||||
|
||||
"attribute" = { fg = "yellow" }
|
||||
"comment" = { fg = "light-gray", modifiers = ["italic"] }
|
||||
"constant" = { fg = "gold" }
|
||||
"constant.numeric" = { fg = "gold" }
|
||||
"constant.builtin" = { fg = "gold" }
|
||||
"constant.character.escape" = { fg = "gold" }
|
||||
"constructor" = { fg = "blue" }
|
||||
"function" = { fg = "white" }
|
||||
"function.builtin" = { fg = "blue" }
|
||||
"function.macro" = { fg = "purple" }
|
||||
"keyword" = { fg = "purple" }
|
||||
"keyword.control" = { fg = "purple" }
|
||||
"keyword.control.import" = { fg = "purple" }
|
||||
"keyword.directive" = { fg = "purple" }
|
||||
"label" = { fg = "purple" }
|
||||
"namespace" = { fg = "purple" }
|
||||
"operator" = { fg = "white" }
|
||||
"keyword.operator" = { fg = "white" }
|
||||
"special" = { fg = "blue" }
|
||||
"string" = { fg = "green" }
|
||||
"type" = { fg = "yellow" }
|
||||
"variable" = { fg = "white" }
|
||||
"variable.builtin" = { fg = "red" }
|
||||
"variable.parameter" = { fg = "red" }
|
||||
"variable.other.member" = { fg = "blue" }
|
||||
|
||||
"markup.heading" = { fg = "red" }
|
||||
"markup.raw.inline" = { fg = "green" }
|
||||
"markup.raw.block" = { fg = "white" }
|
||||
"markup.bold" = { fg = "gold", modifiers = ["bold"] }
|
||||
"markup.italic" = { fg = "purple", modifiers = ["italic"] }
|
||||
"markup.list" = { fg = "red" }
|
||||
"markup.quote" = { fg = "yellow" }
|
||||
"markup.link.url" = { fg = "blue", modifiers = ["underlined"]}
|
||||
"markup.link.text" = { fg = "white" }
|
||||
"markup.link.label" = { fg = "white" }
|
||||
|
||||
"diff.plus" = "green"
|
||||
"diff.delta" = "gold"
|
||||
"diff.minus" = "red"
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
"info" = { fg = "blue", modifiers = ["bold"] }
|
||||
"hint" = { fg = "green", modifiers = ["bold"] }
|
||||
"warning" = { fg = "yellow", modifiers = ["bold"] }
|
||||
"error" = { fg = "red", modifiers = ["bold"] }
|
||||
|
||||
"ui.background" = { bg = "black" }
|
||||
"ui.virtual" = { fg = "faint-gray" }
|
||||
"ui.virtual.indent-guide" = { fg = "faint-gray" }
|
||||
"ui.virtual.whitespace" = { fg = "light-gray" }
|
||||
"ui.virtual.ruler" = { bg = "gray" }
|
||||
|
||||
"ui.cursor" = { fg = "white", modifiers = ["reversed"] }
|
||||
"ui.cursor.primary" = { fg = "white", modifiers = ["reversed"] }
|
||||
"ui.cursor.match" = { fg = "blue", modifiers = ["underlined"]}
|
||||
|
||||
"ui.selection" = { bg = "light-gray" }
|
||||
"ui.selection.primary" = { bg = "gray" }
|
||||
"ui.cursorline.primary" = { bg = "light-black" }
|
||||
|
||||
"ui.linenr" = { fg = "linenr" }
|
||||
"ui.linenr.selected" = { fg = "white" }
|
||||
|
||||
"ui.statusline" = { fg = "white", bg = "light-black" }
|
||||
"ui.statusline.inactive" = { fg = "light-gray", bg = "light-black" }
|
||||
"ui.statusline.normal" = { fg = "light-black", bg = "purple" }
|
||||
"ui.statusline.insert" = { fg = "light-black", bg = "green" }
|
||||
"ui.statusline.select" = { fg = "light-black", bg = "cyan" }
|
||||
"ui.text" = { fg = "white" }
|
||||
"ui.text.focus" = { fg = "white", bg = "light-black", modifiers = ["bold"] }
|
||||
|
||||
"ui.help" = { fg = "white", bg = "gray" }
|
||||
"ui.popup" = { bg = "gray" }
|
||||
"ui.window" = { fg = "gray" }
|
||||
"ui.menu" = { fg = "white", bg = "gray" }
|
||||
"ui.menu.selected" = { fg = "black", bg = "blue" }
|
||||
"ui.menu.scroll" = { fg = "white", bg = "light-gray" }
|
||||
|
||||
[palette]
|
||||
|
||||
yellow = "#D5B06B"
|
||||
blue = "#519FDF"
|
||||
red = "#D05C65"
|
||||
purple = "#B668CD"
|
||||
green = "#7DA869"
|
||||
gold = "#D19A66"
|
||||
cyan = "#46A6B2"
|
||||
white = "#ABB2BF"
|
||||
black = "#16181A"
|
||||
light-black = "#2C323C"
|
||||
gray = "#252D30"
|
||||
faint-gray = "#ABB2BF"
|
||||
light-gray = "#636C6E"
|
||||
linenr = "#282C34"
|
Loading…
Reference in New Issue