From 2591347cd33d59ad4b45f74f1dec47b94e3107e5 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 30 Oct 2025 17:22:36 +0100 Subject: [PATCH] feat(bash): add pathref to libs dev folder (#61) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/61 --- .bash_profile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.bash_profile b/.bash_profile index 3ab1d68..8b306df 100644 --- a/.bash_profile +++ b/.bash_profile @@ -9,10 +9,11 @@ export PS1='\[\e[38;5;46m\]\u\[\e[38;5;2m\]@\[\e[38;5;46m\]\h\[\e[38;5;2m\]:\[\e # Export GPG_TTY for signing stuff with gpg export GPG_TTY=$(tty) -# Create pathref envars to my frameworks and sites folder +# Create pathrefs to dev folders +export L="/var/www/libs" export S="/var/www/sites" -export V="/var/www/fw/vegvisir/" export R="/var/www/fw/reflect/" +export V="/var/www/fw/vegvisir/" # Add XDG Base Directory specifications export XDG_BIN_HOME="$HOME/.local/bin"