Changes: - don't use icons -> less visual clutter. - don't use bold for directories and executables -> same as my custom `EZA_COLORS`
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
###############################################################
|
|
# Configuration documentation is available at
|
|
# https://dystroy.org/broot
|
|
###############################################################
|
|
|
|
# Column order
|
|
cols_order = [
|
|
"permission",
|
|
"count",
|
|
"size",
|
|
"date",
|
|
"mark",
|
|
"git",
|
|
"branch",
|
|
"name",
|
|
]
|
|
|
|
# Max file size for content search
|
|
content_search_max_file_size = "10MB"
|
|
|
|
date_time_format = "%Y-%m-%d %R"
|
|
|
|
default_flags = "--sort-by-type --no-trim-root"
|
|
|
|
# Show NerdFont icons.
|
|
# icon_theme = "nerdfont"
|
|
|
|
imports = [
|
|
"verbs.toml",
|
|
{ luma = ["dark", "unknown"], file = "skins/dark.toml" },
|
|
{ luma = "light", file = "skins/light.toml" },
|
|
]
|
|
|
|
# Whether to mark the selected line with a triangle
|
|
show_selection_mark = true
|
|
|
|
# Special paths
|
|
# =============
|
|
# "list":"never" on a dir prevents broot from looking at its
|
|
# children when searching, unless the dir is the selected root.
|
|
# "sum":"never" on a dir prevents broot from looking at its
|
|
# children when computing the total size and count of files.
|
|
# "show":"always" makes a file visible even if its name
|
|
# starts with a dot.
|
|
# "list":"always" may be useful on a link to a directory
|
|
# (they're otherwise not entered by broot unless selected)
|
|
[special_paths."/media"]
|
|
list = "never"
|
|
sum = "never"
|
|
|
|
[special_paths."~/.config"]
|
|
show = "always"
|
|
|
|
# Quit if there is nothing else to escape.
|
|
quit_on_last_cancel = true
|
|
|