twilight-tree/twilight-tree.toml
Awiteb 373fdab000
feat: A configuration to hide the header
Signed-off-by: Awiteb <a@4rs.nl>
2024-12-23 00:33:34 +03:00

58 lines
No EOL
1.2 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"
quit = "q"
reload = "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