LoginSignup
1
0

More than 3 years have passed since last update.

WSLでstarshipが遅すぎる問題

Last updated at Posted at 2020-08-26

概要

WSLで zshに starship を導入したあと, Gitリポジトリ下での操作が遅すぎる問題が発生。
該当dirに cdするだけで5秒ぐらいかかることがあった。

解決手法

git_status を表示しないようにする。
私の場合はこれで解決した。

~/.config/starship.toml
prompt_order = [
    "username",
    "hostname",
    "kubernetes",
    "directory",
    "git_branch",
    "git_commit",
    "git_state",
    # "git_status",
    "hg_branch",
    "docker_context",
    "package",
    "dotnet",
    "elixir",
    "elm",
    "erlang",
    "golang",
    "haskell",
    "java",
    "julia",
    "nim",
    "nodejs",
    "ocaml",
    "php",
    "purescript",
    "python",
    "ruby",
    "rust",
    "terraform",
    "zig",
    "nix_shell",
    "conda",
    "memory_usage",
    "aws",
    "env_var",
    "crystal",
    "cmd_duration",
    "custom",
    "line_break",
    "jobs",
    "battery",
    "time",
    "character",
]

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0