From d28f918b5ee5f2785a62a96c24fdd5871286fb90 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Wed, 15 Mar 2023 12:27:27 -0400 Subject: [PATCH] add helix configuration --- dot_config/helix/config.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dot_config/helix/config.toml diff --git a/dot_config/helix/config.toml b/dot_config/helix/config.toml new file mode 100644 index 0000000..db5ec58 --- /dev/null +++ b/dot_config/helix/config.toml @@ -0,0 +1,20 @@ +theme = "onelight" + +[editor] +true-color = true +color-modes = true +idle-timeout = 75 + +[editor.indent-guides] +render = true + +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "underline" + +[keys.normal] +"$" = "goto_line_end" +"^" = "goto_line_start" +"F2" = "goto_previous_buffer" +"F3" = "goto_next_buffer" \ No newline at end of file