dotfiles/dot_bashrc

15 lines
294 B
Plaintext

# If not running interactively, don't do anything
[[ $- != *i* ]] && return
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
HISTFILE="${XDG_CACHE_HOME}/bash/history"
PS1='[\u@\h \W]\$ '
alias sudo='sudo '
alias ls='ls --color=auto'
alias la='ls -la --color=auto'
alias ll='ls -l --color=auto'