AutoYADM commit: 2025-02-06 00:30:03

This commit is contained in:
Daniel Fichtinger 2025-02-06 00:30:03 -05:00
parent d42e3a0551
commit ff7a889f6c
2 changed files with 70 additions and 72 deletions

View file

@ -12,61 +12,58 @@ insert = "bar"
normal = "block" normal = "block"
select = "underline" select = "underline"
# [keys.normal] [keys.normal]
# m = "move_char_left" m = "move_char_left"
# M = "goto_line_start" M = "goto_line_start"
# n = "move_visual_line_down" n = "move_visual_line_down"
# e = "move_visual_line_up" e = "move_visual_line_up"
# i = "move_char_right" i = "move_char_right"
# I = "goto_line_end" I = "goto_line_end"
# h = "insert_mode" h = "insert_mode"
# H = "insert_at_line_start" H = "insert_at_line_start"
# w = "move_next_sub_word_start" w = "move_next_sub_word_start"
# b = "move_prev_sub_word_start" b = "move_prev_sub_word_start"
# j = "move_next_sub_word_end" 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"
# C-Q = ":qa!" C-Q = ":qa!"
[keys.select]
# [keys.select] m = "extend_char_left"
# m = "extend_char_left" M = "extend_to_line_start"
# M = "extend_to_line_start" n = "extend_visual_line_down"
# n = "extend_visual_line_down" e = "extend_visual_line_up"
# e = "extend_visual_line_up" i = "extend_char_right"
# i = "extend_char_right" I = "extend_to_line_end"
# I = "extend_to_line_end" k = "extend_search_next"
# k = "extend_search_next" K = "extend_search_prev"
# K = "extend_search_prev" [keys.normal.l]
m = "match_brackets"
# [keys.normal.l] l = "match_brackets"
# m = "match_brackets" s = "surround_add"
# l = "match_brackets" r = "surround_replace"
# s = "surround_add" d = "surround_delete"
# r = "surround_replace" a = "select_textobject_around"
# d = "surround_delete" i = "select_textobject_inner"
# a = "select_textobject_around" [keys.normal."C-w"]
# i = "select_textobject_inner" m = "jump_view_left"
C-m = "jump_view_left"
# [keys.normal."C-w"] n = "jump_view_down"
# m = "jump_view_left" C-n = "jump_view_down"
# C-m = "jump_view_left" i = "jump_view_right"
# n = "jump_view_down" C-i = "jump_view_right"
# C-n = "jump_view_down" e= "jump_view_up"
# i = "jump_view_right" C-e = "jump_view_up"
# C-i = "jump_view_right" M = "swap_view_left"
# e= "jump_view_up" N = "swap_view_down"
# C-e = "jump_view_up" E = "swap_view_up"
# M = "swap_view_left" I = "swap_view_right"
# N = "swap_view_down" h = "no_op"
# E = "swap_view_up" j = "no_op"
# I = "swap_view_right" k = "no_op"
# h = "no_op" l = "no_op"
# j = "no_op" H = "no_op"
# k = "no_op" J = "no_op"
# l = "no_op" K = "no_op"
# H = "no_op" L = "no_op"
# J = "no_op"
# K = "no_op"
# L = "no_op"

View file

@ -8,25 +8,26 @@
"constructor" = "g_1" "constructor" = "g_1"
"constant" = "orange_blaze" "constant" = "orange_blaze"
"constant.character" = "teal" "constant.character" = "red_glowing"
"constant.character.escape" = "pink" "constant.character.escape" = "g_2"
"string" = "green" "string" = "red_glowing"
"string.regexp" = "pink" "string.regexp" = "orange_blaze"
"string.special" = "blue" "string.special" = "g_2"
"string.special.symbol" = "red" "string.special.symbol" = "orange_smolder"
"comment" = { fg = "overlay2", modifiers = ["italic"] } "comment" = { fg = "g_6", modifiers = ["italic"] }
"variable" = "text" "variable" = "g_3"
"variable.parameter" = { fg = "maroon", modifiers = ["italic"] } "variable.parameter" = { fg = "g_2", modifiers = ["italic"] }
"variable.builtin" = "red" "variable.builtin" = "blue"
"variable.other.member" = "blue" "variable.other.member" = "g_2"
"label" = "sapphire" # used for lifetimes "label" = "red_ember" # used for lifetimes
"punctuation" = "g_2"
"punctuation.special" = "orange_golden"
"punctuation" = "overlay2"
"punctuation.special" = "sky"
"keyword" = "mauve" "keyword" = "mauve"
"keyword.control.conditional" = { fg = "mauve", modifiers = ["italic"] } "keyword.control.conditional" = { fg = "mauve", modifiers = ["italic"] }