mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-09-13 19:03:40 +02:00
11 lines
267 B
Bash
11 lines
267 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
|
|
export VV="/var/www/fw/vegvisir/"
|
|
export REFL="/var/www/fw/reflect/"
|