docs/pl-PL/installing/README.md
Aby zainstalować starship, musisz zrobić dwie rzeczy:
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!
Przejdź na stronę Instalacja Chocolatey i postępuj zgodnie z instrukcjami, aby zainstalować Chocolatey.
choco install starship
pkg install starship
Na Funtoo Linux, starship może być zainstalowany przez Portage z core-kit:
emerge app-shells/starship
nix-env -iA nixos.starship
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 switch
Add pkgs.starship to environment.systemPackages in your configuration.nix, then run
sudo nixos-rebuild switch