# .bashrc

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
# .bashrc

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

alias ls='ls --color=auto'

export PS1="\W\[$(tput sgr0)\]\[\033[38;5;1m\];\[$(tput sgr0)\] \[$(tput sgr0)\]"

if [ -f ~/.aliasrc ]; then
    . ~/.aliasrc
fi
