Repeat motion key
This commit is contained in:
parent
2e550272ad
commit
2f24e7c4f9
1 changed files with 8 additions and 6 deletions
|
@ -4,6 +4,7 @@ theme = "donokai"
|
||||||
auto-pairs = false
|
auto-pairs = false
|
||||||
scrolloff = 8
|
scrolloff = 8
|
||||||
rulers = [80, 120]
|
rulers = [80, 120]
|
||||||
|
cursorline = true
|
||||||
|
|
||||||
[editor.cursor-shape]
|
[editor.cursor-shape]
|
||||||
normal = "block"
|
normal = "block"
|
||||||
|
@ -19,17 +20,18 @@ character = "🭰"
|
||||||
|
|
||||||
[keys.insert]
|
[keys.insert]
|
||||||
j = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
|
j = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
|
||||||
J = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
|
|
||||||
k = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
|
|
||||||
K = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
|
|
||||||
|
|
||||||
[keys.normal]
|
[keys.normal]
|
||||||
D = "kill_to_line_end"
|
D = "kill_to_line_end"
|
||||||
# C = ["kill_to_line_end", "insert_mode"]
|
|
||||||
"^" = "goto_line_start"
|
"^" = "goto_line_start"
|
||||||
"C-k" = "jump_view_up"
|
"C-k" = "jump_view_up"
|
||||||
"C-j" = "jump_view_down"
|
"C-j" = "jump_view_down"
|
||||||
"C-h" = "jump_view_left"
|
"C-h" = "jump_view_left"
|
||||||
"C-l" = "jump_view_right"
|
"C-l" = "jump_view_right"
|
||||||
"C-;" = "repeat_last_motion"
|
"L" = "repeat_last_motion"
|
||||||
space = { q = ":reflow 80", Q = ":reflow 120" }
|
space = { q = ":reflow 80", Q = ":reflow 120" }
|
||||||
|
|
||||||
|
[keys.select]
|
||||||
|
"^" = "goto_line_start"
|
||||||
|
space = { q = ":reflow 80", Q = ":reflow 120" }
|
||||||
|
"L" = "repeat_last_motion"
|
||||||
|
|
Reference in a new issue