mirror of
https://github.com/MillironX/dotfiles.git
synced 2024-11-14 19:03:09 +00:00
18 lines
398 B
Cheetah
18 lines
398 B
Cheetah
# shellcheck shell=bash
|
|
# .bashrc
|
|
export SH=bash
|
|
|
|
if [ -f "$HOME/.modules" ]; then
|
|
source $HOME/.modules
|
|
fi
|
|
|
|
# User specific aliases and functions
|
|
source $HOME/.aliases
|
|
|
|
# Hook virtual environment modifers
|
|
source $HOME/.hooks
|
|
|
|
source $HOME/.envvar
|
|
|
|
# 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\]] \\$ "
|