Update ao.toml

remove redundant settings
pull/10617/head
Michael Jones 1 month ago committed by GitHub
parent 23ab1f16ad
commit 28ee2e7133
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2,104 +2,62 @@
# Author: YardQuit
# SYNTAX HIGHLIGHTING
"attribute" = { fg = "yellow" } # e.g. <a>, <img>, <button>
"type" = { fg = "white" } # types e.g. return type: Result, String, etc
"type.builtin" = { fg = "white" } # primitive types provided by the language (int, usize)
"type.parameter" = { fg = "white" } # generic type parameter (T)
"type.enum" = { fg = "white" } #
"type.enum.variant" = { fg = "white" } #
"constructor" = { fg = "orange" } # e.g. Ok, Err, etc
"constant" = { fg = "blue" } # const name
# "constant.builtin" = { fg = "blue" } #
# "constant.builtin.boolean" = { fg = "blue" } #
# "constant.character" = { fg = "blue" } #
"constant.character.escape" = { fg = "yellow" } #
# "constant.numeric" = { fg = "blue" } # numbers
# "constant.numeric.integer" = { fg = "blue" } # numeric, integer value
# "constant.numeric.float" = { fg = "blue" } # numeric, fractional value
"string" = { fg = "blue" } # string
"string.regexp" = { fg = "yellow" } # regular expressions
# "string.special" = { fg = "blue" } #
# "string.special.path" = { fg = "blue" } #
# "string.special.url" = { fg = "blue" } #
# "string.special.symbol" = { fg = "blue" } # erlang/elixir atoms, ruby symbols, clojure keywords
"comment" = { fg = "gray" } # code comment
# "comment.line" = { fg = "gray" } # single line comment
# "comment.block" = { fg = "gray" } # multi-line comment
# "comment.block.documentation" = { fg = "gray" } # documentation comments
"variable" = { fg = "orange" } # variable
# "variable.builtin" = { fg = "orange" } # reserved language variables (self, this, super, etc)
"variable.parameter" = { fg = "yellow" } # function parameter
"variable.other" = { fg = "green" } #
"variable.other.member" = { fg = "green" } # fields of composite data types (structs, unions)
"label" = { fg = "blue" } # e.g. 'static 'a (tic status)
"punctuation" = { fg = "white" } #
# "punctuation.delimiter" = { fg = "white" } # commas, colons
"punctuation.bracket" = { fg = "orange" } # parantheses, angle brackets, etc
"punctuation.special" = { fg = "yellow" } # string interpolation brackets
"keyword" = { fg = "red" } # e.g. impl, struct, enum, trait, let, etc
# "keyword.control" = { fg = "red" } # e.g. use
# "keyword.control.conditional" = { fg = "red" } # e.g. if, else, etc
# "keyword.control.repeat" = { fg = "red" } # e.g. for, while, loop, etc
# "keyword.control.return" = { fg = "red" } # return keyword
# "keyword.control.exception" = { fg = "red" } #
"keyword.operator" = { fg = "blue" } # or, in, etc
"keyword.directive" = { fg = "white" } # prepocessor directives (#if in C)
"keyword.function" = { fg = "red" } # fn, func
"keyword.storage" = { fg = "red" } # keywords describing how things are stored
# "keyword.storage.type" = { fg = "red" } # type of something (class, function, var, let, etc)
"keyword.storage.modifier" = { fg = "green" } # static, mut, const, ref, etc
"operator" = { fg = "white" } # AND, OR, ||, +=, >, etc
"function" = { fg = "purple" } #
# "function.builtin" = { fg = "purple" } # function name
"function.method" = { fg = "green" } #
"function.macro" = { fg = "green" } #
"function.special" = { fg = "yellow" } # preprocessor in C
"tag" = { fg = "green" } # tags like <body> in html
# "tag.builtin" = { fg = "green" } #
"namespace" = { fg = "white" } #
#"special" = { fg = "default" } #
"diff" = { fg = "white" } #
# "diff.plus" = { fg = "green" } # additions
# "diff.plus.gutter" = { fg = "green" } # gutter indicator
"diff.minus" = { fg = "red" } # deletions
# "diff.minus.gutter" = { fg = "red" } # gutter indicator
"diff.delta" = { fg = "brown" } # modifications
# "diff.delta.moved" = { fg = "brown" } # renamed or moved files/changes
# "diff.delta.gutter" = { fg = "brown" } # gutter indicator
"attribute" = { fg = "yellow" }
"type" = { fg = "white" }
"type.builtin" = { fg = "white" }
"type.parameter" = { fg = "white" }
"type.enum" = { fg = "white" }
"type.enum.variant" = { fg = "white" }
"constructor" = { fg = "orange" }
"constant" = { fg = "blue" }
"constant.character.escape" = { fg = "yellow" }
"string" = { fg = "blue" }
"string.regexp" = { fg = "yellow" }
"comment" = { fg = "gray" }
"variable" = { fg = "orange" }
"variable.parameter" = { fg = "yellow" }
"variable.other" = { fg = "green" }
"variable.other.member" = { fg = "green" }
"label" = { fg = "blue" }
"punctuation" = { fg = "white" }
"punctuation.bracket" = { fg = "orange" }
"punctuation.special" = { fg = "yellow" }
"keyword" = { fg = "red" }
"keyword.operator" = { fg = "blue" }
"keyword.directive" = { fg = "white" }
"keyword.function" = { fg = "red" }
"keyword.storage" = { fg = "red" }
"keyword.storage.modifier" = { fg = "green" }
"operator" = { fg = "white" }
"function" = { fg = "purple" }
"function.method" = { fg = "green" }
"function.macro" = { fg = "green" }
"function.special" = { fg = "yellow" }
"tag" = { fg = "green" }
"namespace" = { fg = "white" }
"diff" = { fg = "white" }
"diff.minus" = { fg = "red" }
"diff.delta" = { fg = "brown" }
# MARKUP, SYNAX HIGHLIGHTING AND INTERFACE HYBRID
# "markup" = {} #
# "markup.normal.completion" = {} # for completion doc popup ui
# "markup.normal.hover" = {} # for hover popup ui
"markup.heading" = { fg = "blaze_orange" } #
# "markup.heading.marker" = { fg = "blaze_orange" } # heading marker "#"
"markup.heading.1" = { fg = "crystal_blue", modifiers = ["bold"] } # heading h1
"markup.heading.2" = { fg = "sky_blue", modifiers = ["bold"] } # heading h2
"markup.heading.3" = { fg = "dreamy_blue", modifiers = ["bold"] } # heading h3
"markup.heading.4" = { fg = "crystal_blue" } # heading h4
"markup.heading.5" = { fg = "sky_blue" } # heading h5
"markup.heading.6" = { fg = "dreamy_blue" } # heading h6
# "markup.heading.completion" = {} # for completion doc popup ui
# "markup.heading.hover" = {} # for hover popup ui
"markup.list" = { fg = "blaze_orange" } #
# "markup.list.unnumbered" = { fg = "blaze_orange" } # unnumbered lists symbol '-'
# "markup.list.numbered" = { fg = "blaze_orange" } # numbered lists symbol '1, 2, 3, etc'
# "markup.list.cheched" = { fg = "blaze_orange" } # checked list symbol '[x]'
# "markup.list.unchecked" = { fg = "blaze_orange" } # unchecked list symbol '[ ]'
"markup.bold" = { fg = "crystal_blue", modifiers = ["bold"] } # bold text
"markup.italic" = { fg = "crystal_blue", modifiers = ["italic"] } # italic text
"markup.strikethrough" = { fg = "crystal_blue", modifiers = ["crossed_out"] } # crossed over text
"markup.link" = { fg = "crystal_blue", underline = { color = "light_purple", style = "line" } } # links
"markup.link.url" = { fg = "slate_purple", underline = { color = "slate_purple", style = "line" } } # url part of the link '![link_text](https://example.com)'
"markup.link.label" = { fg = "crystal_blue" } #
"markup.link.text" = { fg = "crystal_blue", modifiers = ["bold"] } # link_text part of the link '![link_text](https://example.com)'
"markup.quote" = { fg = "winter_sky", modifiers = ["italic"] } # quoted text
"markup.raw" = { fg = "winter_sky" } #
# "markup.raw.inline" = { fg = "winter_sky" } # raw inline 'dd if=/dev/null of=/dev/sdb'
# "markup.raw.inline.completion" = {} # for completion doc popup ui
# "markup.raw.inline.hover" = {} # for hover popup ui
"markup.raw.block" = { fg = "white" } # raw block, e.g. code blocks
"markup.heading" = { fg = "blaze_orange" }
"markup.heading.1" = { fg = "crystal_blue", modifiers = ["bold"] }
"markup.heading.2" = { fg = "sky_blue", modifiers = ["bold"] }
"markup.heading.3" = { fg = "dreamy_blue", modifiers = ["bold"] }
"markup.heading.4" = { fg = "crystal_blue" }
"markup.heading.5" = { fg = "sky_blue" }
"markup.heading.6" = { fg = "dreamy_blue" }
"markup.list" = { fg = "blaze_orange" }
"markup.bold" = { fg = "crystal_blue", modifiers = ["bold"] }
"markup.italic" = { fg = "crystal_blue", modifiers = ["italic"] }
"markup.strikethrough" = { fg = "crystal_blue", modifiers = ["crossed_out"] }
"markup.link" = { fg = "crystal_blue", underline = { color = "light_purple", style = "line" } }
"markup.link.url" = { fg = "slate_purple", underline = { color = "slate_purple", style = "line" } }
"markup.link.label" = { fg = "crystal_blue" }
"markup.link.text" = { fg = "crystal_blue", modifiers = ["bold"] }
"markup.quote" = { fg = "winter_sky", modifiers = ["italic"] }
"markup.raw" = { fg = "winter_sky" }
"markup.raw.block" = { fg = "white" }
# USER INTERFACE
"ui.background" = { bg = "deep_abyss"} # workspace background
@ -155,11 +113,6 @@
"ui.menu.scroll" = { fg = "crystal_blue", bg = "moonlight_ocean" } # scrollbar
"ui.highlight" = { underline = { color = "sky_blue", style = "line" } } # highlighted lines in the picker preview
# USER INTERFACE - DEBUGGING
# "ui.debug.breakpoint" = {} # debug breakpoint indicator, found in the gutter
# "ui.debug.active" = {} # indicator for the line at which debugging execution is pausedat, found in the gutter
# "ui.highlight.frameline" = {} # line at which debugging execution is paused at
# USER INTERFACE - DIAGNOSTICS
"warning" = { fg = "lemon_zest" } # diagnostics warning (gutter)
"error" = { fg = "ruby_glow" } # diagnostics error (gutter)
@ -170,8 +123,6 @@
"diagnostic.info" = { fg = "winter_sky", bg = "twilight_blue" } # diagnostics info (editing area)
"diagnostic.warning" = { fg = "winter_sky", bg = "rustic_amber" } # diagnostics warning (editing area)
"diagnostic.error" = { fg = "winter_sky", bg = "rustic_red" } # diagnostics error (editing area)
# "diagnostic.unnecessary" = {} # diagnostics with unnecessary tag (editing area)
# "diagnostic.deprecated" = {} # diagnostics with deprecated tag (editing area)
# COLOR NAMES
[palette]

Loading…
Cancel
Save