diff options
| author | Robby Zambito <contact@robbyzambito.me> | 2026-04-06 19:55:12 -0400 |
|---|---|---|
| committer | Robby Zambito <contact@robbyzambito.me> | 2026-04-06 20:15:40 -0400 |
| commit | 862fbcab1553d76638d874ca01003d01512b869f (patch) | |
| tree | e5a18ca1d44f88bc28cfb4de38dd5a36258baa55 /home.bashrc | |
| parent | c6eaf34e6a4e1e1e3b316b3edaa4ba39e3451ab8 (diff) | |
- 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.
Diffstat (limited to 'home.bashrc')
| -rw-r--r-- | home.bashrc | 3 |
1 files changed, 3 insertions, 0 deletions
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)" |
