|
|
|
# theme = "ayu_mirage"
|
|
|
|
theme = "night_owl"
|
|
|
|
|
|
|
|
[editor]
|
|
|
|
line-number = "relative"
|
|
|
|
cursorline = true
|
|
|
|
auto-completion = false
|
|
|
|
auto-info = false
|
|
|
|
|
|
|
|
[editor.cursor-shape]
|
|
|
|
normal = "block"
|
|
|
|
insert = "bar"
|
|
|
|
|
|
|
|
[editor.lsp]
|
|
|
|
display-messages = true
|
|
|
|
auto-signature-help = false
|
|
|
|
|
|
|
|
[keys.insert]
|
|
|
|
"up" = "move_line_up"
|
|
|
|
"down" = "move_line_down"
|
|
|
|
"left" = "move_char_left"
|
|
|
|
"right" = "move_char_right"
|
|
|
|
"C-b" = "move_char_left"
|
|
|
|
"C-f" = "move_char_right"
|
|
|
|
"A-b" = "move_prev_word_end"
|
|
|
|
"C-left" = "move_prev_word_end"
|
|
|
|
"A-f" = "move_next_word_start"
|
|
|
|
"C-right" = "move_next_word_start"
|
|
|
|
"A-<" = "goto_file_start"
|
|
|
|
"A->" = "goto_file_end"
|
|
|
|
"pageup" = "page_up"
|
|
|
|
"pagedown" = "page_down"
|
|
|
|
"home" = "goto_line_start"
|
|
|
|
"C-a" = "goto_line_start"
|
|
|
|
"end" = "goto_line_end_newline"
|
|
|
|
"C-e" = "goto_line_end_newline"
|
|
|
|
"A-left" = "goto_line_start"
|
|
|
|
"C-p" = "completion"
|
|
|
|
"C-n" = "completion"
|
|
|
|
|
|
|
|
[keys.normal]
|
|
|
|
"space" = { space = "file_picker", "h" = "no_op" }
|
|
|
|
"0" = "goto_line_start"
|
|
|
|
"$" = "goto_line_end"
|
|
|
|
g = { a = "code_action", r = "rename_symbol", n = "goto_next_diag", p = "goto_prev_diag" }
|
|
|
|
Z = { Z = ":wq" }
|
|
|
|
"D" = "kill_to_line_end"
|
|
|
|
"backspace" = "delete_char_backward"
|
|
|
|
x = "delete_char_forward"
|
|
|
|
_ = "goto_line_start"
|
|
|
|
V = "extend_line_below"
|
|
|
|
G = "goto_line_end"
|