Files
dot_files/bash_profile_ext
Autumn Naber 036248b797 Initial commit
2022-01-24 12:32:39 -08:00

18 lines
422 B
Bash

#### 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