31 lines
777 B
TOML
31 lines
777 B
TOML
theme = "gruvbox_dark_hard"
|
|
|
|
[editor]
|
|
true-color = true
|
|
color-modes = true
|
|
scrolloff = 30
|
|
default-yank-register = "+"
|
|
|
|
[editor.statusline]
|
|
mode = { normal = "NORMAL", insert = "INSERT", select = "SELECT" }
|
|
|
|
[editor.file-picker]
|
|
hidden = false
|
|
|
|
[editor.indent-guides]
|
|
render = true
|
|
character = "▏"
|
|
skip-levels = 1
|
|
|
|
# command list here: https://github.com/helix-editor/helix/blob/master/helix-term/src/commands.rs
|
|
[keys.normal]
|
|
ret = "goto_word"
|
|
X = "extend_line_above"
|
|
D = ["goto_line_start", "extend_to_line_end", "yank", "goto_line_start", "kill_to_line_end"]
|
|
Y = ["goto_line_start", "extend_to_line_end_newline", "yank", "goto_line_start"]
|
|
esc = [ "collapse_selection", "keep_primary_selection" ]
|
|
|
|
[keys.normal.'space']
|
|
"p" = "goto_last_accessed_file"
|
|
"z" = "@\"%p\"+yd"
|