Initial commit

This commit is contained in:
Autumn Naber
2022-01-24 12:32:39 -08:00
parent be6e4214b9
commit 036248b797
22 changed files with 1129 additions and 0 deletions

17
bash_profile_ext Normal file
View File

@@ -0,0 +1,17 @@
#### MAGIC VALUE: AZSQFRB8
export PS1="\[\033[38;5;34m\]\u@\h \W]\\$\[$(tput sgr0)\] "
alias ls='ls --color=auto'
alias ll='ls -lah'
alias grep='grep --color=auto'
# Git should ask for password through the command line
unset GIT_ASKPASS
unset SSH_ASKPASS
[ -e "$HOME/.dircolors" ] && DIR_COLORS="$HOME/.dircolors"
[ -e "$DIR_COLORS" ] || DIR_COLORS=""
eval "`dircolors -b $DIR_COLORS`"
#### END MAGIC VALUE: AZSQFRB8