mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-09-13 19:03:40 +02:00
15 lines
475 B
Bash
15 lines
475 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='\[\033[1;36m\]\u\[\033[1;31m\]@\[\033[1;32m\]\h:\[\033[1;35m\]\w\[\033[1;31m\]\$\[\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/"
|