Zaawansowana Instalacja
Aby zainstalować starship, musisz zrobić dwie rzeczy:
- Pobrać plik wykonywalny starship na swój komputer
- Skonfigurować swoją powłokę żeby używała pliku wykonywalnego starship jako wiersza poleceń poprzez modyfikację skryptów inicjalizacyjnych
For most users, the instructions on the main page will work great. Jednakże, dla niektórych wyspecjalizowanych platform, potrzebne będą inne.
Istnieje tak wiele platform, że nie zmieściły się one w głównym pliku README.md, więc poniżej znajdują się instrukcje instalacji dla innych platform od społeczności. Nie ma tutaj Twojej? Jeśli się o tym dowiesz, dodaj je tutaj!
Chocolatey
Wymagania wstępne
Przejdź na stronę Instalacja Chocolatey i postępuj zgodnie z instrukcjami, aby zainstalować Chocolatey.
Instalacja
choco install starshiptermux
Wymagania wstępne
pkg install getconfInstalacja
curl -sS https://starship.rs/install.sh | sh -s -- --bin-dir /data/data/com.termux/files/usr/binFuntoo Linux
Instalacja
Na Funtoo Linux, starship może być zainstalowany przez Portage z core-kit:
emerge app-shells/starshipNix
Getting the Binary
Imperatively
nix-env -iA nixos.starshipDeclarative, single user, via home-manager
Enable the programs.starship module in your home.nix file, and add your settings
{
programs.starship = {
enable = true;
# Configuration written to ~/.config/starship.toml
settings = {
# add_newline = false;
# character = {
# success_symbol = "[➜](bold green)";
# error_symbol = "[➜](bold red)";
# };
# package.disabled = true;
};
};
}then run
home-manager switchDeclarative, system-wide, with NixOS
Add pkgs.starship to environment.systemPackages in your configuration.nix, then run
sudo nixos-rebuild switch