From 6e9e0799369c7a8a940ac223a1f1093bc353a353 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 21 Nov 2019 17:37:01 -0500 Subject: Use .profile, .shrc, .history --- home/.shrc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 home/.shrc (limited to 'home/.shrc') 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 -- cgit 1.4.1