direnv
https://direnv.net
ディレクトリ毎に環境変数を読み込んでくれるやつ
[WARN] - (starship::utils): Executing command "ruby" timed out.
[WARN] - (starship::utils): You can set command_timeout in your config to a higher value to allow longer-running commands to keep executing.
starshipで実行するコマンドが遅いという警告が表示される。
毎回出るのは煩わしい。
starship + asdf を使ってると遅いらしい。
$ brew uninstall direnv
$ asdf plugin-add direnv
$ asdf direnv setup --shell zsh --version latest
それでも警告が表示される場合
デフォルトは500msみたいなので1000msまで許容します。
~/.config/starship.toml
command_timeout = 1000
コマンドの実行時間が長くなってるだけで、実行できてない訳じゃないのでヨシとします。
関連記事