dotfiles/.bash_profile

21 lines
No EOL
674 B
Bash

# Import .bashrc for to unfuck login shells
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# Enable shell prompt colors (will not apply to command prompt).
export PS1='\[\e[38;5;46m\]\u\[\e[38;5;2m\]@\[\e[38;5;46m\]\h\[\e[38;5;2m\]:\[\e[38;5;33m\]\w\[\033[0m\]$ '
# Export GPG_TTY for signing stuff with gpg
export GPG_TTY=$(tty)
# Create pathref envars to my frameworks and sites folder
export S="/var/www/sites"
export V="/var/www/fw/vegvisir/"
export R="/var/www/fw/reflect/"
# Add XDG Base Directory specifications
export XDG_BIN_HOME="$HOME/.local/bin"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"