diff options
Diffstat (limited to 'fish/functions/du.fish')
-rw-r--r-- | fish/functions/du.fish | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fish/functions/du.fish b/fish/functions/du.fish new file mode 100644 index 0000000..1aec7cc --- /dev/null +++ b/fish/functions/du.fish @@ -0,0 +1,4 @@ +# Defined in - @ line 0 +function du --description 'alias du=ncdu --color dark -rr -x --exclude .git' + ncdu --color dark -rr -x --exclude .git $argv; +end |