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

46 lines
885 B
TOML
Raw Normal View History

2023-05-09 12:39:56 -05:00
theme = "custom"
2022-05-18 01:27:19 -05:00
2022-05-19 09:27:29 -05:00
[editor]
auto-pairs = false
2023-01-27 12:14:27 -06:00
auto-save = false
2022-12-13 13:41:40 -06:00
bufferline = "multiple"
2022-05-19 09:27:29 -05:00
scrolloff = 8
2022-06-03 09:20:46 -05:00
rulers = [80, 120]
2022-10-11 23:11:57 -05:00
cursorline = true
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-10-11 22:59:06 -05:00
[editor.indent-guides]
render = true
2022-10-30 10:55:02 -05:00
character = "▏"
2022-10-11 22:59:06 -05:00
2022-01-19 10:06:05 -06:00
[keys.insert]
j = { 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"
"^" = "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"
2022-10-11 23:11:57 -05:00
"L" = "repeat_last_motion"
[keys.normal.space]
q = ":reflow 80"
Q = ":reflow 120"
v = ":run-shell-command fish -c 'env > /tmp/env'"
J = ":bp"
K = ":bn"
2023-04-25 14:13:44 -05:00
C = ":bc"
# O = ["select_textobject_inner WORD", ":pipe-to xargs xdg-open"]
2022-10-11 23:11:57 -05:00
[keys.select]
space = { q = ":reflow 80", Q = ":reflow 120" }
2023-05-19 14:36:25 -05:00
"L" = "repeat_last_motion"