mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-09-13 19:03:40 +02:00
12 lines
303 B
Bash
12 lines
303 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/"
|