aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel <[email protected]>2024-07-08 14:07:33 -0400
committerDaniel <[email protected]>2024-07-08 14:07:33 -0400
commitcaf584b1abee400ea03d4a167790e1bd4b1d24a8 (patch)
treec44295d1f77bfadda2d733cf3493cb19a88a3984
parentc3e07b4613e03e26a2e3abb6c1e3f577856d7266 (diff)
perl
-rw-r--r--shell/.bashrc14
1 files changed, 10 insertions, 4 deletions
diff --git a/shell/.bashrc b/shell/.bashrc
index 12feb0d..d76fbb9 100644
--- a/shell/.bashrc
+++ b/shell/.bashrc
@@ -2,8 +2,8 @@
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
export TERMINAL="/usr/local/bin/st"
-export PATH="/home/bard/.local/bin:$PATH"
-export PATH="/home/bard/.local/scripts/bin:$PATH"
+export PATH="$HOME/.local/bin:$PATH"
+export PATH="$HOME/.local/scripts/:$PATH"
export PATH="$HOME/opt/:$PATH"
export PKG_CONFIG_PATH="$HOME/opt/raylib/lib/pkgconfig/:$PKG_CONFIG_PATH"
export PATH="$HOME/.nimble/bin":$PATH
@@ -81,5 +81,11 @@ fi
export PS1='[\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]]\[\033[01;35m\] λ\[\033[00m\] '
-[ -f "/home/bard/.ghcup/env" ] && source "/home/bard/.ghcup/env" # ghcup-env
-. "$HOME/.cargo/env"
+[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env
+# . "$HOME/.cargo/env"
+
+PATH="/home/bard/perl5/bin${PATH:+:${PATH}}"; export PATH;
+PERL5LIB="/home/bard/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
+PERL_LOCAL_LIB_ROOT="/home/bard/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
+PERL_MB_OPT="--install_base \"/home/bard/perl5\""; export PERL_MB_OPT;
+PERL_MM_OPT="INSTALL_BASE=/home/bard/perl5"; export PERL_MM_OPT;