Last active
March 18, 2024 19:21
-
-
Save jfabry-noc/4c5f28d9eccf5bd21094cad2aebeedd2 to your computer and use it in GitHub Desktop.
Super basic Helix editor config.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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