1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-16 16:29:02 +00:00
starship/docs/ru-RU
2020-02-07 16:47:30 -05:00
..
advanced-config docs(i18n): Update translations (#735) 2019-12-24 16:54:29 -05:00
config docs(i18n): Update translations (#908) 2020-02-07 16:47:30 -05:00
faq docs(i18n): Update translations (#735) 2019-12-24 16:54:29 -05:00
guide docs(i18n): Update translations (#908) 2020-02-07 16:47:30 -05:00
presets docs(i18n): Update translations (#857) 2020-01-21 11:15:25 -05:00
README.md docs(i18n): Update translations (#875) 2020-02-04 12:11:36 -05:00

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg The cross-shell prompt for astronauts Начало работы → ./guide/
title details
Совместивость в первую очередь Работает на большинстве распространенных оболочек и наиболее распространенных операционных системах. Используйте везде!
title details
Основана на Rust Приносит наилучшую в своем классе скорость и безопасность Rust, чтобы сделать вашу подсказку как можно быстрее и надежнее.
title details
Настраиваемая Каждая маленькая деталь настраивается по вашему вкусу, чтобы сделать эту подсказку минимальной или функциональной, как вы захотите.
Под лицензией ISC | Авторское право © 2019-настоящее Starship Contributors Starship: Cross-Shell Prompt Starship is the minimal, blazing fast, and extremely customizable prompt for any shell! Shows the information you need, while staying sleek and minimal. Quick installation available for Bash, Fish, ZSH, Ion, and Powershell.

Быстрая установка

  1. Установите двоичный файл starship:

    Установить последнюю версию

    Через Bash:

    curl -fsSL https://starship.rs/install.sh | bash
    

    Установить через менеджер пакетов

    С Homebrew:

    brew install starship
    

    С Scoop:

    scoop install starship
    
  2. Добавить сценарий инициализации в конфигурационный файл вашей оболочки:

    Bash

    Добавьте следующее в конец ~/.bashrc:

    # ~/.bashrc
    
    eval "$(starship init bash)"
    

    Fish

    Добавьте следующее в конец ~/.config/fish/config.fish:

    # ~/.config/fish/config.fish
    
    starship init fish | source
    

    Zsh

    Добавьте следующее в конец ~/.zshrc:

    # ~/.zshrc
    
    eval "$(starship init zsh)"
    

    PowerShell

    Добавьте следующее в конец ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 (или ~/.config/powershell/Microsoft.PowerShell_profile.ps1 на -Nix):

    # ~\Documents\PowerShell\Profile.ps1
    
    Invoke-Expression (&starship init powershell)
    

    Ion

    Добавьте следующее в конец ~/.config/ion/initrc:

    # ~/.config/ion/initrc
    
    eval $(starship init ion)