-
Notifications
You must be signed in to change notification settings - Fork 246
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Hey there, thanks for this great tool! I'm trying to add it to our developer environments with certain directories collapsed by default like .git but only the flag appears to work.
❯ dust -bn 4 -d 2 --collapse .git
29M ┌── test
55M ├── .git
41M │ ┌── dyninst
149M ├─┴ pkg
309M ┌─┴ .
❯ $env.DC
/root/.config/dust/config.toml
❯ echo "collapse=\".git\"\n" o> $env.DC; cat $env.DC; dust -bn 4 -d 2
collapse=".git"
53M ┌── objects
55M ┌─┴ .git
41M │ ┌── dyninst
149M ├─┴ pkg
309M ┌─┴ .
❯ echo "collapse=[\".git\"]\n" o> $env.DC; cat $env.DC; dust -bn 4 -d 2
collapse=[".git"]
53M ┌── objects
55M ┌─┴ .git
41M │ ┌── dyninst
149M ├─┴ pkg
309M ┌─┴ .
JanMalch
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers