This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/common/helix/config.toml

30 lines
771 B
TOML
Raw Normal View History

theme = "donokai"
2022-05-18 01:27:19 -05:00
2022-05-19 09:27:29 -05:00
[editor]
auto-pairs = false
scrolloff = 8
2022-06-03 09:20:46 -05:00
rulers = [80, 120]
2022-05-19 09:27:29 -05:00
2022-08-03 11:38:32 -05:00
[editor.cursor-shape]
normal = "block"
insert = "bar"
select = "underline"
2022-05-19 09:27:29 -05:00
[editor.file-picker]
hidden = false
2022-01-19 10:06:05 -06:00
[keys.insert]
j = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
J = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
k = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
K = { k = "normal_mode", j = "normal_mode", K = "normal_mode", J = "normal_mode" }
2022-05-19 09:27:29 -05:00
[keys.normal]
D = "kill_to_line_end"
2022-08-03 11:38:32 -05:00
# C = ["kill_to_line_end", "insert_mode"]
"^" = "goto_line_start"
2022-07-21 11:53:08 -05:00
"C-k" = "jump_view_up"
"C-j" = "jump_view_down"
"C-h" = "jump_view_left"
2022-09-26 21:03:18 -05:00
"C-l" = "jump_view_right"
"C-;" = "repeat_last_motion"