From 256b82c50de440d1c32967976d961939de1aec73 Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Sat, 14 Feb 2026 11:14:56 +0000 Subject: [PATCH] Add ~/.local/bin to PATH --- bashprofile/.bashrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bashprofile/.bashrc b/bashprofile/.bashrc index 3e29b66..5cf39ae 100644 --- a/bashprofile/.bashrc +++ b/bashprofile/.bashrc @@ -144,8 +144,10 @@ export MANPAGER='nvim +Man!' [ -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 tmux attach-session -t default || tmux new-session -s default fi +export PATH="$HOME/.local/bin:$PATH" +