29 lines
905 B
TOML
29 lines
905 B
TOML
# config.toml
|
|
[keybindings]
|
|
save = [":w", "ctrl+s"]
|
|
quit = [":q", "ctrl+q"]
|
|
force_quit = [":q!", "ctrl+shift+q"]
|
|
save_and_quit = [":wq", "ctrl+shift+s"]
|
|
enter_edit_mode_before = ["i"]
|
|
enter_edit_mode_after = ["a"]
|
|
exit_edit_mode = ["esc", "ctrl+e"]
|
|
previous_position = ["Left", "9"]
|
|
next_position = ["Right"]
|
|
|
|
move_left = ["h"]
|
|
move_right = ["l"]
|
|
move_up = ["k", "Up"]
|
|
move_down = ["j", "Down"]
|
|
move_word_next = ["w"] # Move to beginning of next word
|
|
move_word_end = ["e"] # Move to end of current/next word
|
|
move_word_prev = ["b"] # Move to beginning of previous word
|
|
move_word_end_prev = ["ge"] # Move to end of previous word
|
|
move_line_start = ["0"] # Move to beginning of line
|
|
move_line_end = ["$"] # Move to end of line
|
|
move_first_line = ["gg"] # Move to first line of form
|
|
move_last_line = ["x", "8"]
|
|
|
|
[colors]
|
|
theme = "dark"
|
|
# Options: "light", "dark", "high_contrast"
|