1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-01 08:00:51 +00:00
starship/docs/ja-JP
2021-01-26 17:07:13 -05:00
..
advanced-config docs(i18n): new Crowdin updates (#2068) 2021-01-07 18:08:18 -05:00
config docs(i18n): New Crowdin updates (#2108) 2021-01-26 17:07:13 -05:00
faq docs(i18n): New Crowdin updates (#1941) 2021-01-03 09:56:07 +01:00
guide docs(i18n): New Crowdin updates (#2108) 2021-01-26 17:07:13 -05:00
installing docs(i18n): new Crowdin updates (#2068) 2021-01-07 18:08:18 -05:00
migrating-to-0.45.0 docs(i18n): new Crowdin updates (#1719) 2020-10-13 15:09:01 -04:00
presets docs(i18n): New Crowdin updates (#1941) 2021-01-03 09:56:07 +01:00
README.md docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00

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 はミニマルで、非常に高速で、カスタマイズ性の高い、あらゆるシェルのためのプロンプトです! ミニマルかつ洗練された形で、あなたに必要な情報を表示します。 Bash, Fish, ZSH, Ion, 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

    Add the following to the end of Microsoft.PowerShell_profile.ps1. You can check the location of this file by querying the $PROFILE variable in PowerShell. Typically the path is ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 or ~/.config/powershell/Microsoft.PowerShell_profile.ps1 on -Nix.

    Invoke-Expression (&starship init powershell)
    

    Ion

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

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