1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-07-26 08:50:23 +00:00
starship/docs/ja-JP
2020-02-07 16:47:30 -05:00
..
advanced-config docs(i18n): Update doc translations (#479) 2019-10-11 17:31:19 +09:00
config docs(i18n): Update translations (#908) 2020-02-07 16:47:30 -05:00
faq docs(i18n): Update doc translations (#697) 2019-12-14 18:46:45 -05:00
guide docs(i18n): Update translations (#908) 2020-02-07 16:47:30 -05:00
presets docs(i18n): Fix links in Japanese docs (#905) 2020-02-04 14:31:52 -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 Get Started → ./guide/
title details
互換性優先 一般的なほとんどのOSの一般的なほとんどのシェル上で動作します。 あらゆるところで使用してください!
title details
Rust 製 Rust の最高レベルの速度と安全性を用いることで、可能な限り高速かつ信頼性を高くしています。
title details
カスタマイズ可能 それぞれの細かい点は好みにカスタマイズが出来るため、ミニマルにも多機能にも好きなようにプロンプトを設定することができます。
ISC Licensed | Copyright © 2019-present 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 のバイナリをインストール

    最新版のインストール

    Shellを利用する

    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 (それか Nix上の ~/.config/powershell/Microsoft.PowerShell_profile.ps1 )の末尾に以下を追加してください。

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

    Ion

    ~/.config/ion/initrc の最後に次を追加してください

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