diff --git a/helix.toml b/helix.toml index f35da87..45950e5 100644 --- a/helix.toml +++ b/helix.toml @@ -1,2 +1,29 @@ theme = "catppuccin_mocha" +[editor] +color-modes = true +cursorline = true + +[editor.indent-guides] +character = "|" +renter = true + +[editor.lsp] +auto-signature-help = false +display-messages = true + +[editor.statusline] +left = ["mode", "spinner", "version-control", "file-name"] + +[keys.normal] +"A-," = "goto_previous_buffer" +"A-." = "goto_next_buffer" +"A-w" = ":buffer-close" +"A-/" = "repeat_last_motion" + +"A-x" = "extend_to_line_bounds" +"X" = ["extend_line_up", "extend_to_line_bounds"] + +[keys.select] +"A-x" = "extend_to_line_bounds" +"X" = ["extend_line_up", "extend_to_line_bounds"]