### Pré-requisitos
- Uma fonte [Nerd Font](https://www.nerdfonts.com/) instalada e ativada em seu terminal.
### Instalação
1. Instale o binário do **starship**:
#### Instalar a última versão
Com o Shell:
```sh
sh -c "$(curl -fsSL https://starship.rs/install.sh)"
```
Para atualizar o Starship de maneira manual, execute novamente o script acima. Isto irá substituir a versão atual sem alterar as configurações do Starship.
#### 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 comando a seguir ao final do arquivo `Microsoft.PowerShell_profile.ps1`. Você pode conferir a localização do arquivo consultando a varável `$PROFILE` no PowerShell. Normalmente o caminho é `~\Documentos\PowerShell\Microsoft.PowerShell_profile.ps1` ou `~/.config/powershell/Microsoft.PowerShell_profile.ps1` no -Nix.
```sh
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)
```
#### Elvish
::: Atenção Apenas a versão v0.15 ou superior do elvish é suportada. :::
Adicione o comando a seguir ao final do arquivo `~/.elvish/rc.elv`:
```sh
# ~/.elvish/rc.elv
eval (starship init elvish)
```
#### Tcsh
Adicione ao final do arquivo `~/.tcshrc`:
```sh
# ~/.tcshrc
eval `starship init tcsh`
```
#### Nushell
::: warning This will change in the future. Only nu version v0.33 or higher is supported. ::: Add the following to your nu config file. You can check the location of this file by running `config path` in nu.
```toml
startup = [
"mkdir ~/.cache/starship",
"starship init nu | save ~/.cache/starship/init.nu",
"source ~/.cache/starship/init.nu"
]
prompt = "starship_prompt"
```