diff options
Diffstat (limited to 'bash')
| -rw-r--r-- | bash/.bashrc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index ffef555..12de64b 100644 --- a/bash/.bashrc +++ b/bash/.bashrc | |||
| @@ -9,6 +9,12 @@ PATH="${HOME}/bin:${HOME}/.local/bin:${PATH}" | |||
| 9 | # Disable bash deprecation warning on OS X | 9 | # Disable bash deprecation warning on OS X |
| 10 | export BASH_SILENCE_DEPRECATION_WARNING=1 | 10 | export BASH_SILENCE_DEPRECATION_WARNING=1 |
| 11 | 11 | ||
| 12 | # Enable starship if possible | ||
| 13 | STARSHIP=`which starship` | ||
| 14 | if [[ -x $STARSHIP ]]; then | ||
| 15 | eval "$(starship init bash)" | ||
| 16 | fi | ||
| 17 | |||
| 12 | # Enable bash-completions for homebrew installed bash | 18 | # Enable bash-completions for homebrew installed bash |
| 13 | if [ -f /opt/homebrew/etc/bash_completion ]; then | 19 | if [ -f /opt/homebrew/etc/bash_completion ]; then |
| 14 | . /opt/homebrew/etc/bash_completion | 20 | . /opt/homebrew/etc/bash_completion |