diff --git a/helix/config.toml b/helix/config.toml index d1d8b76..2282a0d 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -6,6 +6,10 @@ cursorline = true auto-completion = false auto-info = false +[editor.cursor-shape] +normal = "block" +insert = "bar" + [editor.lsp] display-messages = true auto-signature-help = false @@ -32,4 +36,10 @@ auto-signature-help = false "A-left" = "goto_line_start" [keys.normal] -"space" = { space = "file_picker" } +"space" = { space = "file_picker", "h" = "no_op" } +"0" = "goto_line_start" +"$" = "goto_line_end" +g = { a = "code_action" } +Z = { Z = ":wq" } +"D" = ["goto_line_start", "kill_to_line_end"] +"backspace" = "delete_char_backward"