53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
# mould Configuration Example
|
|
# Place this file at ~/.config/mould/config.toml (Linux/macOS)
|
|
# or %AppData%\mould\config.toml (Windows)
|
|
|
|
[theme]
|
|
# If true, skip rendering the background block to let the terminal's transparency show.
|
|
transparent = false
|
|
|
|
# Colors are specified in hex format ("#RRGGBB").
|
|
# Default values follow the Semantic Catppuccin Mocha palette.
|
|
|
|
bg_normal = "#1e1e2e"
|
|
bg_highlight = "#89b4fa"
|
|
bg_active = "#a6e3a1"
|
|
bg_search = "#cba6f7"
|
|
fg_normal = "#cdd6f4"
|
|
fg_dimmed = "#6c7086"
|
|
fg_highlight = "#1e1e2e"
|
|
fg_warning = "#f38ba8"
|
|
fg_modified = "#fab387"
|
|
fg_accent = "#b4befe"
|
|
border_normal = "#45475a"
|
|
border_active = "#a6e3a1"
|
|
tree_depth_1 = "#b4befe"
|
|
tree_depth_2 = "#cba6f7"
|
|
tree_depth_3 = "#89b4fa"
|
|
tree_depth_4 = "#fab387"
|
|
|
|
[keybinds]
|
|
# Keybindings for navigation and application control.
|
|
down = "j"
|
|
up = "k"
|
|
edit = "i"
|
|
edit_append = "a"
|
|
edit_substitute = "s"
|
|
save = ":w"
|
|
quit = ":q"
|
|
normal_mode = "Esc"
|
|
search = "/"
|
|
next_match = "n"
|
|
previous_match = "N"
|
|
jump_top = "gg"
|
|
jump_bottom = "G"
|
|
append_item = "o"
|
|
prepend_item = "O"
|
|
delete_item = "dd"
|
|
undo = "u"
|
|
redo = "U"
|
|
rename = "r"
|
|
append_group = "alt+o"
|
|
prepend_group = "alt+O"
|
|
toggle_group = "t"
|