diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-07 18:04:41 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-07 18:04:41 +0100 |
commit | 8074753daaad059e407dbb0dae05206ef5f510a3 (patch) | |
tree | b5d087c178bea45c1874c102d4cdc6ad00e3d3b5 /bashrc | |
parent | 89ef1c558b4b988952d79792f430c95bfc0ae8bf (diff) |
Adds ~/.cargo/bin to PATH
I installed a rust program but removed it afterwards. To get it to run
easily, I needed to add this directory to my PATH, as is recommended.
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ export PS1='\[\033[38;5;208m\]\u@\h:\w\$\[\033[0m\] ' set -o noclobber # Setting PATH +export PATH=~/.cargo/bin:$PATH export PATH=~/bin/:$PATH # openai keys |