diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-12 15:09:06 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-12 15:09:06 -0400 |
commit | c95ec40c9e4b131164a5c302fd6c8d137a1e6814 (patch) | |
tree | 2323bf599480c41a01beda45104baf97ceafc8ed | |
parent | Update README.md (diff) | |
download | dotfiles.core-c95ec40c9e4b131164a5c302fd6c8d137a1e6814.tar.gz dotfiles.core-c95ec40c9e4b131164a5c302fd6c8d137a1e6814.tar.bz2 dotfiles.core-c95ec40c9e4b131164a5c302fd6c8d137a1e6814.zip |
.bashrc: Add $HOME/bin to PATH
-rw-r--r-- | home/.bashrc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/home/.bashrc b/home/.bashrc index 1aad5fe..7755643 100644 --- a/home/.bashrc +++ b/home/.bashrc | |||
@@ -19,6 +19,14 @@ fi | |||
19 | 19 | ||
20 | 20 | ||
21 | ######################################################################## | 21 | ######################################################################## |
22 | ## PATH | ||
23 | ######################################################################## | ||
24 | # ~/bin is used for personal scripts and other executables used only | ||
25 | # by this user. | ||
26 | PATH=$PATH:$HOME/bin | ||
27 | |||
28 | |||
29 | ######################################################################## | ||
22 | ## Bash completion | 30 | ## Bash completion |
23 | ######################################################################## | 31 | ######################################################################## |
24 | [[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \ | 32 | [[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \ |