59 lines
No EOL
1.3 KiB
TOML
59 lines
No EOL
1.3 KiB
TOML
[behavior]
|
|
# command interpreted by bash when pressing the file_action key
|
|
file_action = "true"
|
|
|
|
# when true the program will quit after first action
|
|
quit_on_action = false
|
|
|
|
# determines the compare function used for sorting entries
|
|
# enum: none, dirs_top_simple, dirs_bot_simple
|
|
# TODO: rename to entry_sort
|
|
path_node_sort = "dirs_top_simple"
|
|
|
|
# the scrollung algorithm used
|
|
# enum: center, editor
|
|
scrolling = "center"
|
|
|
|
# the amount of entries skipped when the skip keys are pressed
|
|
skip_amount = 5
|
|
|
|
|
|
[composition]
|
|
# indention used for subentries
|
|
indent = 2
|
|
|
|
# when true shows visual markers for indention whitespaces
|
|
show_indent = false
|
|
|
|
# when true uses utf8 characters
|
|
use_utf8 = true
|
|
|
|
[debug]
|
|
# enables debug mode
|
|
enabled = false
|
|
|
|
# the minimum distance of the highlighted entry to the spacing
|
|
padding_bot = 3
|
|
padding_top = 3
|
|
|
|
# the number of lines not uses for entries
|
|
spacing_bot = 2
|
|
spacing_top = 2
|
|
|
|
[keybinding]
|
|
collapse_dir = "left"
|
|
entry_down = "down"
|
|
entry_up = "up"
|
|
expand_dir = "right"
|
|
file_action = "return"
|
|
rename_mode = "r"
|
|
quit = "ctrl+q"
|
|
reload = "ctrl+r"
|
|
skip_up = "ctrl+up"
|
|
skip_down = "ctrl+down"
|
|
|
|
[setup]
|
|
# the working directory used when starting
|
|
working_dir = "."
|
|
# when true the working directory is shown in the header
|
|
with_cwd_header = true |