1. 程式人生 > >zshell 實現類似 fish 自動提示

zshell 實現類似 fish 自動提示

sudo git some 作用 自動提示 post 註意 解決 code

第一步

克隆下載 https://github.com/zsh-users/zsh-autosuggestions
git clone git://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/plugins/zsh-autosuggestions

註意這裏使用的是 oh-my-zsh。

第二步

配置 .zshrc 的 plugins:
vim ~/.zshrc
//找到下面 plugins 的配置,添加 zsh-autosuggestions
plugins=(zsh-autosuggestions) 多個空格分開
//打開一個新的 tab,基本上大功告成。

如果 tab 不起作用

可以嘗試下面的解決方案:

vim ~/.oh-my-zsh/oh-my-zsh.sh
打開這個文件,找到

:${ZSH_DISABLE_COMPFIX:=true}
// 默認是 true ,改為 false
:${ZSH_DISABLE_COMPFIX:=false}
該配置項默認是 true ,改為 false。

然後執行 source ~/.zshrc ,如果出現類似:

Restart your terminal, you must seen some directories that are not secure

這樣的錯誤,命令行執行:

sudo chmod 755 <insecure_directory_name>

zshell 實現類似 fish 自動提示