From 862fbcab1553d76638d874ca01003d01512b869f Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Mon, 6 Apr 2026 19:55:12 -0400 Subject: feat(bash): enable jj in login shells - Uncomment .bashrc sourcing in home.bash_profile for login shells - Add ~/.local/bin to PATH in home.bashrc before jj completion loading This ensures jj (Jujutsu) is available and supports tab completion in TTY and SSH sessions where login shells were previously not sourcing .bashrc. --- home.bashrc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'home.bashrc') diff --git a/home.bashrc b/home.bashrc index 09703c9..a4f7813 100644 --- a/home.bashrc +++ b/home.bashrc @@ -1,3 +1,6 @@ +# Add local binaries to PATH +export PATH="$HOME/.local/bin:$PATH" + source <(jj util completion bash) eval "$(zoxide init bash)" -- cgit