Files
dotfiles/helix/config.toml

48 lines
801 B
TOML

theme = "{{helix_theme}}"
[editor]
color-modes = true
cursorline = true
indent-guides.render = true
true-color = true
text-width = 100
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.search]
smart-case = false
[editor.soft-wrap]
enable = true
wrap-at-text-width = true
[editor.statusline]
center = ["version-control"]
[keys.normal]
C-R = ":config-reload"
_ = { n = ":set whitespace.render none", a = ":set whitespace.render all" }
# Git integration with lazygit
A-g = [
":write-all",
":insert-output lazygit >/dev/tty",
":redraw",
":reload-all"
]
# Search and replace with scooter
C-r = [
":write-all",
":insert-output scooter >/dev/tty",
":redraw",
":reload-all"
]
[keys.normal.space]
i = ":toggle lsp.display-inlay-hints"