Fix Starship install instructions

This commit is contained in:
Jake 2021-04-06 14:30:29 +00:00
parent 9ccf8d40ef
commit 4b0f405e1e
1 changed files with 3 additions and 1 deletions

View File

@ -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)"
```