diff --git a/tips/starship.md b/tips/starship.md index 53b733c..04d31d0 100644 --- a/tips/starship.md +++ b/tips/starship.md @@ -29,11 +29,13 @@ chmod +x ./install.sh ./install.sh --bin-dir ~/.local/bin ``` -Finally, we need to tell our shell to load this prompt, so we can do that by adding the following line to the **bottom** of your `~/.bashrc` file like so. +Finally, we need to tell our shell to load this prompt and where we have our local programs, so we can do that by adding the following lines to the **bottom** of your `~/.bashrc` file like so. ```bash # other stuff... +export PATH="${PATH}:~/.local/bin" + eval "$(starship init bash)" ```