1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-14 19:03:09 +00:00
dotfiles/executable_dot_bashrc.tmpl

19 lines
398 B
Cheetah
Raw Normal View History

# shellcheck shell=bash
2021-08-24 23:16:19 +00:00
# .bashrc
export SH=bash
2021-08-24 23:16:19 +00:00
if [ -f "$HOME/.modules" ]; then
source $HOME/.modules
fi
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
# Hook virtual environment modifers
source $HOME/.hooks
source $HOME/.envvar
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\]] \\$ "