From 4fe4d2db7ff5e9ebff0658768d88e40d51bc1223 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 21 Sep 2022 14:16:44 -0300 Subject: [PATCH] Added Helix (https://helix-editor.com/) configuration --- helix/config.toml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 helix/config.toml diff --git a/helix/config.toml b/helix/config.toml new file mode 100644 index 0000000..828bc43 --- /dev/null +++ b/helix/config.toml @@ -0,0 +1,32 @@ +theme = "monokai_pro_spectrum" + +[editor] +line-number = "relative" +cursorline = true +auto-completion = false +auto-info = false + +[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" \ No newline at end of file