diff options
author | EuAndreh <eu@euandre.org> | 2023-04-05 19:01:52 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-05 19:01:52 -0300 |
commit | 00b9bdafe3298d3eb516bbac063f2dfd0b8a56e0 (patch) | |
tree | 827c05f080440342cb4757cbe94586ed7cbfc0d4 | |
parent | bin/shesc: Mark as executable (diff) | |
download | dotfiles-00b9bdafe3298d3eb516bbac063f2dfd0b8a56e0.tar.gz dotfiles-00b9bdafe3298d3eb516bbac063f2dfd0b8a56e0.tar.xz |
etc/sh/rc: Ignore .git in "tree" alias
-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' +alias tree='tree -aC -I .git' alias make='make -e --no-print-directory' alias mv='mv -i' alias bc='bc -l' |