AutoYADM commit: 2025-02-05 22:15:03
This commit is contained in:
parent
58a49ac91d
commit
ddf6e8ed5b
2 changed files with 160 additions and 0 deletions
|
@ -27,6 +27,8 @@ j = "move_next_sub_word_end"
|
||||||
J = "move_next_long_word_end"
|
J = "move_next_long_word_end"
|
||||||
k = "search_next"
|
k = "search_next"
|
||||||
K = "search_prev"
|
K = "search_prev"
|
||||||
|
C-q = ":qa"
|
||||||
|
C-Q = ":qa!"
|
||||||
|
|
||||||
[keys.select]
|
[keys.select]
|
||||||
m = "extend_char_left"
|
m = "extend_char_left"
|
||||||
|
|
|
@ -0,0 +1,158 @@
|
||||||
|
# Syntax highlighting
|
||||||
|
# -------------------
|
||||||
|
"attribute" = "yellow"
|
||||||
|
|
||||||
|
"type" = "yellow"
|
||||||
|
"type.enum.variant" = "teal"
|
||||||
|
|
||||||
|
"constructor" = "sapphire"
|
||||||
|
|
||||||
|
"constant" = "peach"
|
||||||
|
"constant.character" = "teal"
|
||||||
|
"constant.character.escape" = "pink"
|
||||||
|
|
||||||
|
"string" = "green"
|
||||||
|
"string.regexp" = "pink"
|
||||||
|
"string.special" = "blue"
|
||||||
|
"string.special.symbol" = "red"
|
||||||
|
|
||||||
|
"comment" = { fg = "overlay2", modifiers = ["italic"] }
|
||||||
|
|
||||||
|
"variable" = "text"
|
||||||
|
"variable.parameter" = { fg = "maroon", modifiers = ["italic"] }
|
||||||
|
"variable.builtin" = "red"
|
||||||
|
"variable.other.member" = "blue"
|
||||||
|
|
||||||
|
"label" = "sapphire" # used for lifetimes
|
||||||
|
|
||||||
|
"punctuation" = "overlay2"
|
||||||
|
"punctuation.special" = "sky"
|
||||||
|
|
||||||
|
"keyword" = "mauve"
|
||||||
|
"keyword.control.conditional" = { fg = "mauve", modifiers = ["italic"] }
|
||||||
|
|
||||||
|
"operator" = "sky"
|
||||||
|
|
||||||
|
"function" = "blue"
|
||||||
|
"function.macro" = "mauve"
|
||||||
|
|
||||||
|
"tag" = "blue"
|
||||||
|
|
||||||
|
"namespace" = { fg = "yellow", modifiers = ["italic"] }
|
||||||
|
|
||||||
|
"special" = "blue" # fuzzy highlight
|
||||||
|
|
||||||
|
"markup.heading.1" = "red"
|
||||||
|
"markup.heading.2" = "peach"
|
||||||
|
"markup.heading.3" = "yellow"
|
||||||
|
"markup.heading.4" = "green"
|
||||||
|
"markup.heading.5" = "sapphire"
|
||||||
|
"markup.heading.6" = "lavender"
|
||||||
|
"markup.list" = "teal"
|
||||||
|
"markup.list.unchecked" = "overlay2"
|
||||||
|
"markup.list.checked" = "green"
|
||||||
|
"markup.bold" = { fg = "red", modifiers = ["bold"] }
|
||||||
|
"markup.italic" = { fg = "red", modifiers = ["italic"] }
|
||||||
|
"markup.link.url" = { fg = "blue", modifiers = ["italic", "underlined"] }
|
||||||
|
"markup.link.text" = "lavender"
|
||||||
|
"markup.raw" = "green"
|
||||||
|
"markup.quote" = "pink"
|
||||||
|
|
||||||
|
"diff.plus" = "green"
|
||||||
|
"diff.minus" = "red"
|
||||||
|
"diff.delta" = "blue"
|
||||||
|
|
||||||
|
# User Interface
|
||||||
|
# --------------
|
||||||
|
"ui.background" = { fg = "text", bg = "base" }
|
||||||
|
|
||||||
|
"ui.linenr" = { fg = "surface1" }
|
||||||
|
"ui.linenr.selected" = { fg = "lavender" }
|
||||||
|
|
||||||
|
"ui.statusline" = { fg = "subtext1", bg = "mantle" }
|
||||||
|
"ui.statusline.inactive" = { fg = "surface2", bg = "mantle" }
|
||||||
|
"ui.statusline.normal" = { fg = "base", bg = "lavender", modifiers = ["bold"] }
|
||||||
|
"ui.statusline.insert" = { fg = "base", bg = "green", modifiers = ["bold"] }
|
||||||
|
"ui.statusline.select" = { fg = "base", bg = "flamingo", modifiers = ["bold"] }
|
||||||
|
|
||||||
|
"ui.popup" = { fg = "text", bg = "surface0" }
|
||||||
|
"ui.window" = { fg = "crust" }
|
||||||
|
"ui.help" = { fg = "overlay2", bg = "surface0" }
|
||||||
|
|
||||||
|
"ui.bufferline" = { fg = "subtext0", bg = "mantle" }
|
||||||
|
"ui.bufferline.active" = { fg = "mauve", bg = "base", underline = { color = "mauve", style = "line" } }
|
||||||
|
"ui.bufferline.background" = { bg = "crust" }
|
||||||
|
|
||||||
|
"ui.text" = "text"
|
||||||
|
"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] }
|
||||||
|
"ui.text.inactive" = { fg = "overlay1" }
|
||||||
|
"ui.text.directory" = { fg = "blue" }
|
||||||
|
|
||||||
|
"ui.virtual" = "overlay0"
|
||||||
|
"ui.virtual.ruler" = { bg = "surface0" }
|
||||||
|
"ui.virtual.indent-guide" = "surface0"
|
||||||
|
"ui.virtual.inlay-hint" = { fg = "surface1", bg = "mantle" }
|
||||||
|
"ui.virtual.jump-label" = { fg = "rosewater", modifiers = ["bold"] }
|
||||||
|
|
||||||
|
"ui.selection" = { bg = "surface1" }
|
||||||
|
|
||||||
|
"ui.cursor" = { fg = "base", bg = "secondary_cursor" }
|
||||||
|
"ui.cursor.primary" = { fg = "base", bg = "rosewater" }
|
||||||
|
"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] }
|
||||||
|
|
||||||
|
"ui.cursor.primary.normal" = { fg = "base", bg = "rosewater" }
|
||||||
|
"ui.cursor.primary.insert" = { fg = "base", bg = "green" }
|
||||||
|
"ui.cursor.primary.select" = { fg = "base", bg = "flamingo" }
|
||||||
|
|
||||||
|
"ui.cursor.normal" = { fg = "base", bg = "secondary_cursor_normal" }
|
||||||
|
"ui.cursor.insert" = { fg = "base", bg = "secondary_cursor_insert" }
|
||||||
|
"ui.cursor.select" = { fg = "base", bg = "secondary_cursor" }
|
||||||
|
|
||||||
|
"ui.cursorline.primary" = { bg = "cursorline" }
|
||||||
|
|
||||||
|
"ui.highlight" = { bg = "surface1", modifiers = ["bold"] }
|
||||||
|
|
||||||
|
"ui.menu" = { fg = "overlay2", bg = "surface0" }
|
||||||
|
"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] }
|
||||||
|
|
||||||
|
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||||
|
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
||||||
|
"diagnostic.info" = { underline = { color = "sky", style = "curl" } }
|
||||||
|
"diagnostic.hint" = { underline = { color = "teal", style = "curl" } }
|
||||||
|
"diagnostic.unnecessary" = { modifiers = ["dim"] }
|
||||||
|
|
||||||
|
error = "red"
|
||||||
|
warning = "yellow"
|
||||||
|
info = "sky"
|
||||||
|
hint = "teal"
|
||||||
|
|
||||||
|
[palette]
|
||||||
|
cursorline = "#2a2b3c"
|
||||||
|
secondary_cursor = "#b5a6a8"
|
||||||
|
secondary_cursor_normal = "#b5a6a8"
|
||||||
|
secondary_cursor_insert = "#7ea87f"
|
||||||
|
|
||||||
|
red_flame = "#C53030"
|
||||||
|
red_glowing = "#DF6464"
|
||||||
|
red_ember = "#B14242"
|
||||||
|
orange_glow = "#D87C4A"
|
||||||
|
orange_blaze = "#C4693D"
|
||||||
|
orange_smolder = "#E49A44"
|
||||||
|
orange_golden = "#E5A72A"
|
||||||
|
blue = "#4A8B8B"
|
||||||
|
green_light = "#629C7D"
|
||||||
|
green = "#1E6F54"
|
||||||
|
background = "#121212"
|
||||||
|
g_0 = "#e5e5e5"
|
||||||
|
g_1 = "#e5e5e5"
|
||||||
|
g_2 = "#d5d5d5"
|
||||||
|
g_3 = "#b4b4b4"
|
||||||
|
g_4 = "#a7a7a7"
|
||||||
|
g_5 = "#949494"
|
||||||
|
g_6 = "#737373"
|
||||||
|
g_7 = "#535353"
|
||||||
|
g_8 = "#323232"
|
||||||
|
g_9 = "#212121"
|
||||||
|
g_10 = "#1d1d1d"
|
||||||
|
g_11 = "#191919"
|
||||||
|
g_12 = "#151515"
|
Loading…
Add table
Add a link
Reference in a new issue