Simplified Helix config
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-21 11:25:57 +0100 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-21 11:25:57 +0100 |
| Commit | 3344b747a14fbd9c6a16be0c1890b04605f78731 (patch) |
|
-rw-r--r-- |
helix.toml | 11 |
1 files changed, 2 insertions, 9 deletions
| diff --git a/helix.toml b/helix.toml | |||
| ... | |||
| 4 | line-number = "relative" |
4 | line-number = "relative" |
| 5 | color-modes = true |
5 | color-modes = true |
| 6 | true-color = true |
6 | true-color = true |
| 7 | scrolloff = 10 |
||
| 8 | idle-timeout = 1000 |
7 | idle-timeout = 1000 |
| 9 | mouse = false |
8 | mouse = false |
| 10 | middle-click-paste = true |
9 | middle-click-paste = true |
| ... | |||
| 20 | 19 | ||
| 21 | [keys.normal] |
20 | [keys.normal] |
| 22 | "esc" = [ "collapse_selection", "keep_primary_selection" ] |
21 | "esc" = [ "collapse_selection", "keep_primary_selection" ] |
| 23 | "A-," = [ "goto_previous_buffer" ] |
||
| 24 | "A-." = [ "goto_next_buffer" ] |
||
| 25 | "{" = [ "goto_prev_paragraph" ] |
||
| 26 | "}" = [ "goto_next_paragraph" ] |
||
| 27 | "D" = [ "ensure_selections_forward", "extend_to_line_end", "change_selection" ] |
22 | "D" = [ "ensure_selections_forward", "extend_to_line_end", "change_selection" ] |
| 28 | 23 | "C-left" = [ "goto_previous_buffer" ] |
|
| 29 | [keys.select] |
24 | "C-right" = [ "goto_next_buffer" ] |
| 30 | "{" = [ "goto_prev_paragraph" ] |
||
| 31 | "}" = [ "goto_next_paragraph" ] |
||