starship/docs/ja-JP
Matan Kushner 1d965a9d24
docs(i18n): new Crowdin updates (#3460)
2022-02-07 15:53:55 +01:00
..
advanced-config docs(i18n): new Crowdin updates (#3460) 2022-02-07 15:53:55 +01:00
config docs(i18n): new Crowdin updates (#3460) 2022-02-07 15:53:55 +01:00
faq docs(i18n): new Crowdin updates (#3460) 2022-02-07 15:53:55 +01:00
guide docs(i18n): new Crowdin updates (#3460) 2022-02-07 15:53:55 +01:00
installing docs(i18n): new Crowdin updates (#3218) 2021-12-20 16:05:59 -05:00
migrating-to-0.45.0 docs(i18n): new Crowdin updates (#3460) 2022-02-07 15:53:55 +01:00
presets docs(i18n): new Crowdin updates (#3460) 2022-02-07 15:53:55 +01:00
README.md docs(i18n): new Crowdin updates (#3460) 2022-02-07 15:53:55 +01:00

README.md

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg シェル用の最小限の、非常に高速で、無限にカスタマイズ可能なプロンプトです! Get Started → ./guide/
title details
互換性優先 一般的なほとんどのOSの一般的なほとんどのシェル上で動作します。 あらゆるところで使用してください!
title details
Rust 製 Rust の最高レベルの速度と安全性を用いることで、可能な限り高速かつ信頼性を高くしています。
title details
カスタマイズ可能 それぞれの細かい点は好みにカスタマイズが出来るため、ミニマルにも多機能にも好きなようにプロンプトを設定することができます。
ISC Licensed | Copyright © 2019-present Starship Contributors Starship: Cross-Shell Prompt Starship はミニマルで、非常に高速で、カスタマイズ性の高い、あらゆるシェルのためのプロンプトです! ミニマルかつ洗練された形で、あなたに必要な情報を表示します。 Quick installation available for Bash, Fish, ZSH, Ion, Tcsh, Elvish, Nu, Xonsh, Cmd, and PowerShell.

必要なもの

  • Nerd Fontの一つがインストールされていて、ターミナルで有効になっていること。

クイックインストール

  1. Starship のバイナリをインストール

    最新版のインストール

    Shellを利用する

    sh -c "$(curl -fsSL https://starship.rs/install.sh)"
    

    Starship自体を更新するには、上記のスクリプトを再度実行してください。 最新のバージョンに置き換わり、設定ファイルには変更を加えません。

    パッケージマネージャー経由でインストール

    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

    Microsoft.PowerShell_profile.ps1 の最後に以下を追記してください。 PowerShell 上で $PROFILE 変数を問い合わせると、ファイルの場所を確認できます。 通常、パスは ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 または -Nix 上では ~/.config/powershell/Microsoft.PowerShell_profile.ps1 です。

    Invoke-Expression (&starship init powershell)
    

    Ion

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

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

    Elvish

    ::: warning elvish v0.17以上のみサポートされています。 :::

    ~/.elvish/rc.elv の最後に以下を追記してください。

    # ~/.elvish/rc.elv
    
    eval (starship init elvish)
    

    Tcsh

    ~/.tcshrc の最後に以下を追加します:

    # ~/.tcshrc
    
    eval `starship init tcsh`
    

    Nushell

    ::: warning This will change in the future. nu バージョン 0.33 以降のみサポートされます。 ::: Add the following to your nu config file. nu でconfig pathを実行することで、設定ファイルの場所を確認できます。

    startup = [
      "mkdir ~/.cache/starship",
      "starship init nu | save ~/.cache/starship/init.nu",
      "source ~/.cache/starship/init.nu",
    ]
    prompt = "starship_prompt"
    

    Xonsh

    ~/.xonshrc の最後に以下を追加してください:

    # ~/.xonshrc
    
    execx($(starship init xonsh))
    

    Cmd

    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"))()