dotfiles/helix/config.toml

30 lines
514 B
TOML
Raw Normal View History

theme = "{{helix_theme}}"
2022-04-04 01:42:03 -05:00
[editor]
2022-09-19 12:21:36 -05:00
color-modes = true
2022-09-19 11:53:48 -05:00
cursorline = true
indent-guides.render = true
2022-04-04 01:42:03 -05:00
true-color = true
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.search]
smart-case = false
2023-04-11 02:14:18 -05:00
[editor.soft-wrap]
enable = true
2023-07-07 22:46:36 -05:00
wrap-at-text-width = true
2023-04-11 02:14:18 -05:00
2023-04-14 12:36:43 -05:00
[editor.statusline]
center = ["version-control"]
[keys.normal]
C-r = ":config-reload"
_ = { n = ":set whitespace.render none", a = ":set whitespace.render all" }
2023-04-11 02:14:18 -05:00
[keys.normal.space]
i = ":toggle lsp.display-inlay-hints"