initial commit

This commit is contained in:
2021-08-31 14:07:33 -07:00
commit 303b189507
6 changed files with 275 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
if [[ -f ~/.bash_home ]]; then
. ~/.bash_home
fi
alias emacs='emacsclient -ct'
alias ls='ls --color=auto'
alias diff='diff --color=auto'
alias grep='grep --color=auto'
alias cp="rsync -r --progress"
alias mv="rsync -aP --remove-source-files"
GREEN="\[$(tput setaf 4)\]"
GREENER="\[$(tput setaf 2)\]"
RESET="\[$(tput sgr0)\]"
PS1="${GREEN}\u@\h ${GREENER}\W ${RESET}> "