.zshrcに補完のために以下の設定をする。 autoload -U compinit; compinit ここでセキュリティ警告が出る場合があります。 Ignore insecure directories and continue [ny]? こんなの。 これを回避するには上記の設定を以下のようにします。 autoload -U compinit; compinit -u で、-uオプションは何か。というか設定して一年位してやっと調べる気になった。 man zshcompsys に載ってました。 zsh のオプションって manではinlineで書いてあるので読みにくい。。。 前略 compinit 中略 For security reasons compinit also checks if the completion system would use files not owne