docs/id-ID/installing/README.md
Untuk memasang starship, ada dua hal yang perlu anda lakukan:
Untuk kebayakan pengguna, instruksi pada halaman utama akan berjalan lancar. Namun, untuk sebagian platfrom khusus, instruksi khusus diperlukan.
There are so many platforms out there that they didn't fit into the main README.md file, so here are some installation instructions for other platforms from the community. Is yours not here? Please do add it here if you figure it out!
Head over to the Chocolatey installation page and follow the instructions to install Chocolatey.
choco install starship
pkg install starship
On Funtoo Linux, starship can be installed from core-kit via Portage:
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