starship/docs/pt-BR/README.md

3.3 KiB

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg O prompt minimalista, extremamente rápido e infinitamente personalizável para qualquer shell! Primeiros passos → ./guide/
title details
Compatibilidade primeiro Funciona nos principais shells nos principais sistemas operacionais. Use em qualquer lugar!
title details
Poder do Rust Tenha o melhor da velocidade e segurança do Rust, para tornar seu prompt o mais rápido e confiável possível.
title details
Personalizável Cada pequeno detalhe é personalizável ao seu gosto, para tornar esse prompt o mínimo possível ou rico em recursos, como você preferir.
Licenciado pelo ISC | Todos os direitos reservados © 2019-Presente | Contribuidores Starship Starship: Cross-Shell Prompt O Starship é o prompt minimalista, extremamente rápido e extremamente personalizável para qualquer shell! Mostra as informações que você precisa, mantendo-se elegante e minimalista. Instalação rápida disponível para Bash, Fish, ZSH, Ion e Powershell.

Instalação

  1. Instale o binário do starship:

    Instalar a última versão

    Com o Shell:

    curl -fsSL https://starship.rs/install.sh | bash
    

    To update the Starship itself, rerun the above script. It will replace the current version without touching Starship's configuration.

    Instalar via Gerenciador de Pacotes

    With Homebrew:

    brew install starship
    

    Com o Scoop:

    scoop install starship
    
  2. Adicione o script de inicialização ao arquivo de configuração do shell:

    Bash

    Adicione o seguinte comando no final do arquivo ~/.bashrc:

    # ~/.bashrc
    
    eval "$(starship init bash)"
    

    Fish

    Adicione o seguinte comando no final do arquivo ~/.config/fish/config.fish:

    # ~/.config/fish/config.fish
    
    starship init fish | source
    

    Zsh

    Adicione o seguinte comando no final do arquivo ~/.zshrc:

    # ~/.zshrc
    
    eval "$(starship init zsh)"
    

    Powershell

    Add the following to the end of Microsoft.PowerShell_profile.ps1. You can check the location of this file by querying the $PROFILE variable in PowerShell. Typically the path is ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 or ~/.config/powershell/Microsoft.PowerShell_profile.ps1 on -Nix.

    Invoke-Expression (&starship init powershell)
    

    Ion

    Adicione o seguinte comando no final do arquivo ~/.config/ion/initrc:

    # ~/.config/ion/initrc
    
    eval $(starship init ion)
    

    Elvish

    ::: warning Only elvish v0.15 or higher is supported. :::

    Add the following to the end of ~/.elvish/rc.elv:

    # ~/.elvish/rc.elv
    
    eval (starship init elvish)
    

    Tcsh

    Add the following to the end of ~/.tcshrc:

    # ~/.tcshrc
    
    eval `starship init tcsh`