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

35 lines
876 B
TOML

theme = "donokai"
[editor]
auto-pairs = false
scrolloff = 8
rulers = [80, 120]
[editor.cursor-shape]
normal = "block"
insert = "bar"
select = "underline"
[editor.file-picker]
hidden = false
[editor.indent-guides]
render = true
character = "🭰"
[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" }
[keys.normal]
D = "kill_to_line_end"
# C = ["kill_to_line_end", "insert_mode"]
"^" = "goto_line_start"
"C-k" = "jump_view_up"
"C-j" = "jump_view_down"
"C-h" = "jump_view_left"
"C-l" = "jump_view_right"
"C-;" = "repeat_last_motion"
space = { q = ":reflow 80", Q = ":reflow 120" }