aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-04-22 14:48:28 -0300
committerEuAndreh <eu@euandre.org>2023-04-22 14:48:28 -0300
commit6a455ea8799adbaf7f082088fcedbf45f29996cb (patch)
treeed94971837523482dd9f372895835ceeca475f12
parentbin/mnt: Add new utility (diff)
downloaddotfiles-6a455ea8799adbaf7f082088fcedbf45f29996cb.tar.gz
dotfiles-6a455ea8799adbaf7f082088fcedbf45f29996cb.tar.xz
etc/sh/rc: Also exclude vendor/ from tree(1) by default
-rw-r--r--etc/sh/rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/sh/rc b/etc/sh/rc
index 359a1a7..d9631f9 100644
--- a/etc/sh/rc
+++ b/etc/sh/rc
@@ -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'