summaryrefslogtreecommitdiff
path: root/config/bash_profile
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2026-02-23 16:54:28 -0800
committerThomas Ulmer <thomasmulmer02@gmail.com>2026-02-23 16:54:28 -0800
commitbab271f5ae060734de7e95107baf5191e46fc90d (patch)
tree64953b1e5f6329eeb1d2e1b97823f0feeb6102a1 /config/bash_profile
parent49b4ddfca0b514cd4b4655a82a261187defd91d6 (diff)
add musl and vi
Diffstat (limited to 'config/bash_profile')
-rw-r--r--config/bash_profile7
1 files changed, 5 insertions, 2 deletions
diff --git a/config/bash_profile b/config/bash_profile
index ffb5007..1613f56 100644
--- a/config/bash_profile
+++ b/config/bash_profile
@@ -7,7 +7,7 @@ if test -z "$XDG_RUNTIME_DIR"; then
fi
if [[ -f ~/.bashrc ]] ; then
- . ~/.bashrc
+ . ~/.bashrc
fi
if [ -d ~/.ghcup/bin ]; then
@@ -26,6 +26,10 @@ if [ -d ~/.mcabal/bin ]; then
export PATH=~/.mcabal/bin:$PATH
fi
+if [ -d ~/.local/musl/bin ]; then
+ export PATH=~/.local/musl/bin:$PATH
+fi
+
if [ -d ~/.local/bin ]; then
export PATH=~/.local/bin:$PATH
fi
@@ -33,4 +37,3 @@ fi
if [ -d /usr/local/lib/pkgconfig ]; then
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
fi
-