Совместимость в первую очередь
Работает на большинстве распространенных оболочек и наиболее распространенных операционных системах. Используйте везде!
Минималистичное, быстрое и бесконечно настраиваемое приглашение командной строки для любой оболочки!
Установите бинарный файл starship:
Через Shell:
curl -sS https://starship.rs/install.sh | sh
Чтобы обновить Starship, повторно запустите приведенный выше скрипт. Он заменит текущую версию, не затрагивая конфигурацию Starship.
С помощью Homebrew:
brew install starship
С помощью Winget:
winget install starship
Добавить сценарий инициализации в конфигурационный файл вашей оболочки:
Добавьте следующее в конец ~/.bashrc
:
# ~/.bashrc
eval "$(starship init bash)"
Добавьте следующее в конец ~/.config/fish/config.fish
:
# ~/.config/fish/config.fish
starship init fish | source
Добавьте следующее в конец ~/.zshrc
:
# ~/.zshrc
eval "$(starship init zsh)"
Добавьте следующее в конец Microsoft.PowerShell_profile.ps1
. Вы можете узнать расположение этого файла, запросив переменную $PROFILE
в PowerShell. Обычно он находится в ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
или ~/.config/powershell/Microsoft.PowerShell_profile.ps1
на -Nix.
Invoke-Expression (&starship init powershell)
Добавьте следующее в конец ~/.config/ion/initrc
:
# ~/.config/ion/initrc
eval $(starship init ion)
WARNING
Only elvish v0.18 or higher is supported.
Добавьте следующую строку в конец ~/.elvish/rc.elv
:
# ~/.elvish/rc.elv
eval (starship init elvish)
Добавьте следующее в конец ~/.tcshrc
:
# ~/.tcshrc
eval `starship init tcsh`
WARNING
This will change in the future. Поддерживается только Nushell v0.78+.
Add the following to the end of your Nushell env file (find it by running $nu.env-path
in Nushell):
mkdir ~/.cache/starship
starship init nu | save -f ~/.cache/starship/init.nu
And add the following to the end of your Nushell configuration (find it by running $nu.config-path
):
use ~/.cache/starship/init.nu
Добавьте следующее в конец ~/.xonshrc
:
# ~/.xonshrc
execx($(starship init xonsh))
You need to use Clink (v1.2.30+) with Cmd. Add the following to a file starship.lua
and place this file in Clink scripts directory:
-- starship.lua
load(io.popen('starship init cmd'):read("*a"))()