diff options
author | EuAndreh <eu@euandre.org> | 2023-04-22 14:48:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-22 14:48:28 -0300 |
commit | 6a455ea8799adbaf7f082088fcedbf45f29996cb (patch) | |
tree | ed94971837523482dd9f372895835ceeca475f12 | |
parent | bin/mnt: Add new utility (diff) | |
download | dotfiles-6a455ea8799adbaf7f082088fcedbf45f29996cb.tar.gz dotfiles-6a455ea8799adbaf7f082088fcedbf45f29996cb.tar.xz |
etc/sh/rc: Also exclude vendor/ from tree(1) by default
-rw-r--r-- | etc/sh/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ alias diff='diff --color=auto' alias watch='watch --color ' alias man='MANWIDTH=$((COLUMNS > 80 ? 80 : COLUMNS)) man' alias less='less -R' -alias tree='tree -aC -I .git' +alias tree='tree -aC -I .git -I vendor' alias make='make -e --no-print-directory' alias mv='mv -i' alias bc='bc -l' |