configs/dot.config/helix/config.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2024-01-02 21:45:04 +01:00
theme = "everforest_dark"
[editor]
cursorline = true
2024-01-02 21:45:04 +01:00
bufferline = "multiple"
[editor.statusline]
left = ["mode", "file-name", "spinner"]
center = ["diagnostics"]
right = ["selections", "primary-selection-length", "file-type", "file-encoding", "position-percentage", "position"]
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.indent-guides]
render = true
2024-01-02 21:45:04 +01:00
character = "▏" # Some characters that work well: "▏", "┆", "┊", "⸽"
skip-levels = 1
[editor.whitespace]
render = "all"
[editor.whitespace.characters]
space = "·"
nbsp = "⍽"
tab = "→"
newline = "¬" #"⏎"
tabpad = "·" # Tabs will look like "→···" (depending on tab width)
[editor.lsp]
2024-01-02 21:45:04 +01:00
enable = true
display-messages = true
2024-01-02 21:45:04 +01:00
auto-signature-help = true
display-signature-help-docs = true
display-inlay-hints = true
snippets = true
2024-01-02 21:45:04 +01:00
[editor.soft-wrap]
enable = true
max-wrap = 20
max-indent-retain = 40
wrap-indicator = "↪"
wrap-at-text-width = false
[keys.normal]
2024-01-02 21:45:04 +01:00
X = "extend_line_above"
D = "delete_char_backward"
q = "move_prev_word_start"
Q = "move_prev_long_word_start"
[keys.select]
2024-01-02 21:45:04 +01:00
q = "extend_prev_word_start"
Q = "extend_prev_long_word_start"