summary refs log tree commit diff
path: root/home/.shrc
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-21 17:37:01 -0500
committerJune McEnroe <june@causal.agency>2019-11-21 17:37:01 -0500
commit2fe1ccf386c9bc64848854bf4287638344149fa9 (patch)
tree2328503a6156d442f1fc77caeab72770a7f12828 /home/.shrc
parentRemove default ENV from manual (diff)
downloadsrc-2fe1ccf386c9bc64848854bf4287638344149fa9.tar.gz
src-2fe1ccf386c9bc64848854bf4287638344149fa9.zip
Use .profile, .shrc, .history
Diffstat (limited to 'home/.shrc')
-rw-r--r--home/.shrc31
1 files changed, 31 insertions, 0 deletions
diff --git a/home/.shrc b/home/.shrc
new file mode 100644
index 00000000..e815a748
--- /dev/null
+++ b/home/.shrc
@@ -0,0 +1,31 @@
+set -o noclobber -o nounset -o vi
+
+HISTFILE=~/.history
+CDPATH=:~
+
+alias vim=$EDITOR
+alias ls='ls -p'
+alias ll='ls -hl'
+alias bc='bc -l'
+alias gs='git status --short --branch || ls' gd='git diff'
+alias gsh='git show' gl='git log --graph --pretty=log'
+alias gco='git checkout' gb='git branch' gm='git merge' gst='git stash'
+alias ga='git add' gmv='git mv' grm='git rm'
+alias gc='git commit' gca='gc --amend' gt='git tag'
+alias gp='git push' gu='git pull' gf='git fetch'
+alias gr='git rebase' gra='gr --abort' grc='gr --continue' grs='gr --skip'
+alias rand='openssl rand -base64 33'
+alias private='eval "$(gpg -d ~/.private)"'
+if [ "$(uname)" = 'Linux' ]; then
+	alias ls='ls --color=auto' grep='grep --color'
+fi
+
+PS0=$'\n'
+PS1='\$ '
+RPS1="\? ${SSH_CLIENT:+\h:}\w"
+
+if [ "${TERM%-*}" = 'xterm' ]; then
+	tsl=$'\e]0;'
+	fsl=$'\e\\'
+	PS0="${tsl}${SSH_CLIENT:+\h:}\W${fsl}${PS0}"
+fi