Skip to content

Instantly share code, notes, and snippets.

@jfabry-noc
Last active March 18, 2024 19:21
Show Gist options
  • Save jfabry-noc/4c5f28d9eccf5bd21094cad2aebeedd2 to your computer and use it in GitHub Desktop.
Save jfabry-noc/4c5f28d9eccf5bd21094cad2aebeedd2 to your computer and use it in GitHub Desktop.
Super basic Helix editor config.
theme = "tokyonight_storm"
[editor]
bufferline = "multiple"
line-number = "relative"
rulers = [80]
true-color = true
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.indent-guides]
character = "|"
render = true
[editor.lsp]
display-inlay-hints = true
display-messages = true
[editor.soft-wrap]
enable = true
[editor.statusline]
left = ["mode", "spinner", "version-control"]
center = ["file-name"]
right = ["diagnostics", "selections", "position", "file-encoding", "file-line-ending", "file-type"]
separator = "│"
mode.normal = "NORMAL"
mode.insert = "INSERT"
mode.select = "SELECT"
[keys.normal]
"C-s" = "goto_line_start"
"C-e" = "goto_line_end"
[keys.select]
"C-s" = "goto_line_start"
"C-e" = "goto_line_end"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment