1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-16 16:29:02 +00:00
starship/docs/es-ES
2020-02-07 16:47:30 -05:00
..
advanced-config docs(i18n): Update translated docs (#792) 2020-01-15 12:23:25 -05:00
config docs(i18n): Update translations (#908) 2020-02-07 16:47:30 -05:00
faq docs(i18n): Update translated docs (#792) 2020-01-15 12:23:25 -05:00
guide docs(i18n): Update translations (#908) 2020-02-07 16:47:30 -05:00
presets docs(i18n): Update translated docs (#792) 2020-01-15 12:23:25 -05:00
README.md docs(i18n): Update translations (#875) 2020-02-04 12:11:36 -05:00

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg The cross-shell prompt for astronauts Empezar → ./guide/
title details
Compatibilidad primero Funciona en las interfaces de líneas de comando (shells) más comunes en los sistemas operativos más comunes. ¡Úsalo donde sea!
title details
Desarrollado en Rust Obtén la mayor velocidad y seguridad de Rust, para hacer tu prompt lo más rápida y segura posible.
title details
Personalizable Puedes personalizar cada pequeño detalle a tu gusto, de manera que puedes tener una interfaz minimalista o rica en funcionalidades.
Bajo una licencia ISC | Derechos de autor © 2019-presente Colaboradores de Starship Starship: Cross-Shell Prompt Starship is the minimal, blazing fast, and extremely customizable prompt for any shell! Shows the information you need, while staying sleek and minimal. Quick installation available for Bash, Fish, ZSH, Ion, and Powershell.

Instalación rápida

  1. Instalar el binario de starship:

    Instalar la última versión

    Con la interfaz de línea de comandos:

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

    Instalar con un gestor de paquetes

    Con Homebrew:

    brew install starship
    

    Con Scoop:

    scoop install starship
    
  2. Añade el script de inicio al archivo de configuración de tu interfaz de línea de comandos:

    Bash

    Añade el siguiente código al final de ~/.bashrc:

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

    Fish

    Añade el siguiente código al final de ~/.config/fish/config.fish:

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

    Zsh

    Añade el siguiente código al final de ~/.zshrc:

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

    Powershell

    Añade el siguiente código al final de ~\Documentos\PowerShell\Microsoft.PowerShell_profile.ps1 (o ~/.config/powershell/Microsoft.PowerShell_profile.ps1 en sistemas *nix):

    # ~\Documentos\PowerShell\Profile.ps1
    
    Invoke-Expression (&starship init powershell)
    

    Ion

    Añade el siguiente código al final de ~/.config/ion/initrc:

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