-
Notifications
You must be signed in to change notification settings - Fork 0
bash_config
Darrion Burgess edited this page Nov 20, 2023
·
1 revision
Bash should be relatively straightforward, with the exception of my custom prompt and adding some things to the path
#!/bin/bash
- just standard bash starting point, nothing strange so far hopefully
Lastly, we will enable the starship prompt, this is a nice prompt that is highly customizable and has a lot of nice features
eval "$(starship init bash)"
- We have the evaluation of the starship prompt
- This requires that the startship prompt is already installed on the system
- must be enabled last otherwise we start getting strange errors around not being able to call the starship command