diff --git a/nushell/config.nu b/nushell/config.nu index 897b5af..e30c02c 100644 --- a/nushell/config.nu +++ b/nushell/config.nu @@ -130,6 +130,12 @@ def ll [dir?: string] { | select mode name target user size modified } +# cool du (don't display everything) +alias _du = du +def du [...args] { + $args | each { _du $in } | select path apparent physical +} + # cool df def df [] { ^df -h