dotfiles/bashrc

12 lines
232 B
Bash
Raw Normal View History

2020-08-08 18:10:04 -04:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
. ~/dotfiles/aliases
# Set prompt
2020-08-09 17:44:43 -04:00
PS1="\[\e[0;33m\]\u@\h\[\e[m\]: \[\e[0;34m\]\w\[\e[m\] \$ "
[ -f ~/.bashrc_local ] && . ~/.bashrc.local