zshell 實現相似 fish 自動提示

第一步

克隆下載 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 不起做用

能夠嘗試下面的解決方案:git

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

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

而後執行 source ~/.zshrc ,若是出現相似:github

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

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

sudo chmod 755 <insecure_directory_name>
相關文章
相關標籤/搜索