20 lines
458 B
Bash
20 lines
458 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`"
|
|
|
|
export PATH=$PATH:$HOME/.local/bin
|
|
|
|
#### END MAGIC VALUE: AZSQFRB8
|