Zsh

執行 Zsh 首次使用嚮導

  • February 27, 2022

第一次配置 Zsh 時我做了一個錯誤的選擇,所以現在我想再次執行配置嚮導(第一次登錄時執行的東西)。我該怎麼做呢?

該嚮導由函式提供zsh-newuser-install

要再次執行它,請備份您的.zshrc(因為有一個小風險zsh-newuser-install會弄亂您的手動配置),然後執行

autoload -U zsh-newuser-install
zsh-newuser-install -f

autoload -Uz zsh-newuser-install; zsh-newuser-install -f 該嚮導只是一個您可以隨時呼叫的函式。

引用自:https://unix.stackexchange.com/questions/108136