dotfiles/.bash_profile

12 lines
306 B
Bash

# Import .bashrc for to unfuck login shells
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# 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/"