1
0
Fork 0

helix: light/dark mode

This commit is contained in:
Jeremy Kaplan 2025-09-02 21:49:16 -04:00
commit 60f8f83839
5 changed files with 7 additions and 2 deletions

26
helix/main.toml Normal file
View file

@ -0,0 +1,26 @@
[editor]
scrolloff = 1
cursorline = true
gutters = [
"diff",
"diagnostics",
"spacer",
"line-numbers",
"spacer",
]
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.statusline]
left = ["mode", "spinner", "file-name"]
center = []
right = ["diagnostics", "selections", "position", "position-percentage", "file-encoding"]
[keys.normal]
"\\" = { w = ":w" }
"C-e" = "scroll_down"
"C-y" = "scroll_up"