Sitio Web · Instalación · Configuración
Explora la documentación de Starship
## 🚀 Instalación ### Prerequisitos - Una [Nerd Font](https://www.nerdfonts.com/) instalada y habilitada en tu terminal (por ejemplo, prueba [Fira Code Nerd Font](https://www.nerdfonts.com/font-downloads)). ### Comenzar 1. Instala el binario de **starship**: #### Instalar la última versión ##### Desde un binario precontruido, con Shell: ```sh curl -fsSL https://starship.rs/install.sh | bash ``` ##### Desde el código fuente en [crates.io](https://crates.io/): ```sh cargo install starship ``` #### Instalar vía un gestor de paquetes ##### Con [Homebew](https://brew.sh/): ```sh brew install starship ``` ##### Con [Scoop](https://scoop.sh): ```powershell scoop install starship ``` 1. 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`: ```sh # ~/.bashrc eval "$(starship init bash)" ``` #### Fish Añade el siguiente código al final de `~/.config/fish/config.fish`: ```sh # ~/.config/fish/config.fish starship init fish | source ``` #### Zsh Añade el siguiente código al final de `~/.zshrc`: ```sh # ~/.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 *nix): ```sh Invoke-Expression (&starship init powershell) ``` #### Ion Añade el siguiente código al final de `~/.config/ion/initrc`: ```sh # ~/.config/ion/initrc eval $(starship init ion) ``` ## 🤝 Colaborando ¡Siempre estamos buscando por colaboradores de **cualquier nivel**! Si estas buscando una manera fácil de ayudar este proyecto, puedes intentar resolver un problema con la etiqueta "[good first issue](https://github.com/starship/starship/labels/🌱%20good%20first%20issue)". Si quieres ayudar a colaborar a starship, por favor mira nuestra [Guía de Colaboradores](https://github.com/starship/starship/blob/master/CONTRIBUTING.md). Además, siéntete libre de entrar en nuestro [servidor de Discord](https://discord.gg/8Jzqu3T) y di "¡Hola!". 👋 ### Desarrolladores Este proyecto existe gracias a todas las personas que han ayudado. [[Contribuir](https://github.com/starship/starship/blob/master/CONTRIBUTING.md)].