This commit is contained in:
2026-06-06 17:35:38 -04:00
parent f6bf31d341
commit 2061bc59f7
7 changed files with 21 additions and 46 deletions

View File

@@ -1,6 +1,3 @@
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export XDG_DOWNLOAD_DIR="$HOME/downloads"
export XDG_PROJECTS_DIR="$HOME/programming"
@@ -17,5 +14,13 @@ export SUDO_EDITOR=nvim
export GOPATH="$HOME/.local/go"
export PATH="$HOME/.local/bin:$HOME/.local/go/bin:$HOME/opt/bin:$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.local/bin:$HOME/.local/go/bin:$HOME/.cargo/bin:$PATH"
export LD_LIBRARY_PATH="$HOME/opt/lib:${LD_LIBRARY_PATH:-}"
for d in "$HOME/opt"/*; do
[ -d "$d" ] || continue
case ":$PATH:" in
*:"$d":*) ;;
*) PATH="$PATH:$d" ;;
esac
done