Files
komp_ac/client/config.toml
2025-02-28 14:31:57 +01:00

37 lines
746 B
TOML

# config.toml
[keybindings]
# GENERAL
save = [":w", "ctrl+s"]
quit = [":q", "ctrl+q"]
force_quit = [":q!", "ctrl+shift+q"]
save_and_quit = [":wq", "ctrl+shift+s"]
enter_command_mode = [":", "shift+;"]
# MODE SPECIFIC
# READ ONLY MODE
enter_edit_mode_before = ["i"]
enter_edit_mode_after = ["a"]
previous_entry = ["q"]
next_entry = ["right","1"]
move_left = ["h"]
move_right = ["l"]
move_up = ["k", "Up"]
move_down = ["j", "Down"]
move_word_next = ["w"]
move_word_end = ["e"]
move_word_prev = ["b"]
move_word_end_prev = ["ge"]
move_line_start = ["0"]
move_line_end = ["$"]
move_first_line = ["gg"]
move_last_line = ["ctrl+g"]
# EDIT MODE
exit_edit_mode = ["esc", "ctrl+e"]
[colors]
theme = "dark"
# Options: "light", "dark", "high_contrast"