commit d465ddf161f3eb6473a61ea6fc9f84bc7508251c
parent 8b33f8d553b3dfca1929f8a6e0071bb11c23b781
Author: Byron Torres <b@torresjrjr.com>
Date: Sun, 21 Feb 2021 17:17:38 +0000
Add ~/bin to $PATH, add '--all' to gitl alias
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/sh/.profile b/sh/.profile
@@ -11,6 +11,7 @@ export DOTSHELL="$HOME/.sh"
# rcfile for interactive-only POSIX sh. See sh(1).
export ENV="$DOTSHELL/sh/.shrc"
export INPUTRC="$DOTSHELL/misc/.inputrc"
+export PATH="$PATH:$HOME/bin"
# system defaults
export XDG_CONFIG_HOME="$HOME/.config"
diff --git a/sh/.shrc b/sh/.shrc
@@ -18,7 +18,7 @@ alias tree='tree -C --dirsfirst'
alias diff='diff --color=auto'
alias grep='grep --color=auto'
-alias gitl='git log --oneline --decorate --graph -5'
+alias gitl='git log --oneline --decorate --graph --all -5'
alias gitll='git log --oneline --decorate --graph --all'
alias gits='git status -s'
alias gitss='git status -v'