1
0

Add ~/.local/bin to PATH

This commit is contained in:
2026-02-14 11:14:56 +00:00
parent 5db94cb588
commit 256b82c50d

View File

@@ -144,8 +144,10 @@ export MANPAGER='nvim +Man!'
[ -r "$HOME/.bashrc-local" ] && . "$HOME/.bashrc-local" [ -r "$HOME/.bashrc-local" ] && . "$HOME/.bashrc-local"
if [ "$SUDO_USER" == "" ] && [ "$TMUX" == "" ] && ! (echo $TERM | grep -q tmux ) if [ "$SUDO_USER" == "" ] && [ "$TMUX" == "" ] && ! (echo "$TERM" | grep -q tmux )
then then
tmux attach-session -t default || tmux new-session -s default tmux attach-session -t default || tmux new-session -s default
fi fi
export PATH="$HOME/.local/bin:$PATH"