init
This commit is contained in:
commit
c3b7f039e3
4 changed files with 367 additions and 0 deletions
30
config.toml
Normal file
30
config.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue