1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-21 21:26:04 +00:00
dotfiles/executable_dot_bashrc

16 lines
354 B
Text
Raw Normal View History

2021-08-24 23:16:19 +00:00
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
2021-08-25 01:00:29 +00:00
# Hook virtual environment modifers
source $HOME/.hooks
2021-08-24 23:16:19 +00:00
# User specific aliases and functions
2021-08-25 00:46:22 +00:00
source $HOME/.aliases
2021-08-24 23:16:19 +00:00
# Make the prompt pretty, just in case we're stuck in bash land
export PS1="[\[\e[32m\]\u\[\e[m\]@\[\e[33m\]\h\[\e[m\] \[\e[34m\]\W\[\e[m\]] \\$ "