### Instalação
1. Instale o binário do **starship**:
#### Instalar a última versão
Com o Shell:
```sh
curl -fsSL https://starship.rs/install.sh | bash
```
#### Instalar via Gerenciador de Pacotes
Com o [Homebrew](https://brew.sh/):
```sh
brew install starship
```
Com o [Scoop](https://scoop.sh):
```powershell
scoop install starship
```
1. Adicione o script de inicialização ao arquivo de configuração do shell:
#### Bash
Adicione o seguinte comando no final do arquivo `~/.bashrc`:
```sh
# ~/.bashrc
eval "$(starship init bash)"
```
#### Fish
Adicione o seguinte comando no final do arquivo `~/.config/fish/config.fish`:
```sh
# ~/.config/fish/config.fish
starship init fish | source
```
#### Zsh
Adicione o seguinte comando no final do arquivo `~/.zshrc`:
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
#### Powershell
Adicione o seguinte comando no final do arquivo `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (ou `~/.config/powershell/Microsoft.PowerShell_profile.ps1` em -Nix):
```sh
# ~\Documents\PowerShell\Profile.ps1
Invoke-Expression (&starship init powershell)
```
#### Ion
Adicione o seguinte comando no final do arquivo `~/.config/ion/initrc`:
```sh
# ~/.config/ion/initrc
eval $(starship init ion)
```