mirror of
https://github.com/bootandy/dust.git
synced 2025-12-05 20:40:11 -08:00
31 lines
608 B
TOML
31 lines
608 B
TOML
# Sample Config file, works with toml and yaml
|
|
# Place in either:
|
|
# ~/.config/dust/config.toml
|
|
# ~/.dust.toml
|
|
|
|
# Print tree upside down (biggest highest)
|
|
reverse=true
|
|
|
|
# Subdirectories will not have their path shortened
|
|
display-full-paths=true
|
|
|
|
# Use file length instead of blocks
|
|
display-apparent-size=true
|
|
|
|
# No colors will be printed
|
|
no-colors=true
|
|
|
|
# No percent bars or percentages will be displayed
|
|
no-bars=true
|
|
|
|
# No total row will be displayed
|
|
skip-total=true
|
|
|
|
# Do not display hidden files
|
|
ignore-hidden=true
|
|
|
|
# print sizes in powers of 1000 (e.g., 1.1G)
|
|
output-format="si"
|
|
|
|
number-of-lines=5
|