2.1 KiB
2.1 KiB
🚀 進階安裝
要安裝 starship,你必須做兩件事:
- 下載 starship 執行檔到你的電腦裡
- 修改 shell 的初始化腳本,讓其使用 starship 作為提示字元
對大部分的使用者來說,在主頁面的安裝指引皆足以正常運作。 然而,對於一些較特別的平台,我們需要不同的安裝指引。
有太多平台不適用於主要的 README.md 檔案了,所以這裡有一些來自社群的其他平台的安裝指引。 你的平台不在這裡嗎? 如果你找出怎麼安裝,請幫我們加上你的指引!
Chocolatey
先決要求
前往Chocolatey 安裝頁面,並且跟隨指引來安裝 Chocolatey。
安裝
choco install starship
termux
先決要求
pkg install getconf
安裝
sh -c "$(curl -fsSL https://starship.rs/install.sh)" -- --bin-dir /data/data/com.termux/files/usr/bin
Funtoo Linux
安裝
On Funtoo Linux, starship can be installed from core-kit via Portage:
emerge app-shells/starship
Nix
Getting the Binary
命令式
nix-env -iA nixos.starship
聲明式、單個使用者,使用 home-manager
Enable the programs.starship
module in your home.nix
file, and add your settings
{
programs.starship = {
enable = true;
enableZshIntegration = 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
聲明式、全系統,使用 NixOS
Add pkgs.starship
to environment.systemPackages
in your configuration.nix
, then run
sudo nixos-rebuild switch