30 lines
747 B
TOML
30 lines
747 B
TOML
theme = "tokyonight"
|
|
|
|
[editor]
|
|
line-number = "relative"
|
|
cursorline = true
|
|
|
|
[editor.inline-diagnostics]
|
|
cursor-line = "warning" # Show warnings and errors inline on the cursor line
|
|
other-lines = "disable" # Disable diagnostics on non-cursor lines
|
|
|
|
[keys.normal]
|
|
C-right = "move_next_word_start"
|
|
C-left = "move_prev_word_end"
|
|
S-right = "extend_char_right"
|
|
S-left = "extend_char_left"
|
|
"C-&" = "switch_to_uppercase"
|
|
"C-é" = "switch_to_lowercase"
|
|
"X" = "select_line_above"
|
|
|
|
[keys.insert]
|
|
C-right = "move_next_word_start"
|
|
C-left = "move_prev_word_end"
|
|
S-right = "extend_char_right"
|
|
S-left = "extend_char_left"
|
|
|
|
[keys.select]
|
|
C-right = "extend_next_word_start"
|
|
C-left = "extend_prev_word_end"
|
|
S-right = "extend_char_right"
|
|
S-left = "extend_char_left"
|