終端自動提示插件的安裝

使用的是託管在github.com上的zsh-autosuggestions插件,
地址 https://github.com/tarruda/zsh-autosuggestionsgit

預先

步驟 1. git clone下載插件源碼

  • 經過命令行下載到了 ~/.zsh/zsh-autosuggestions目錄中,經過cd 可查看
    git clone git://github.com/tarruda/zsh-autosuggestions ~/.zsh/zsh-autosuggestions工具

步驟2. 打開~/.zshrc進行配置

2.1複製如下代碼

# Load zsh-syntax-highlighting.
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

# Load zsh-autosuggestions.
source ~/.zsh/zsh-autosuggestions/autosuggestions.zsh

# Enable autosuggestions automatically.
zle-line-init() {
    zle autosuggest-start
}
zle -N zle-line-init

2.2 打開命令行工具進入~/.zshrc文件並粘貼2.1中的代碼

  • vim ~/.zshrcspa

  • i 進入--INSERT--編輯模式,使用上下左右鍵找個地方粘貼便可(快捷鍵可用)插件

2.3 保存退出

  • ESC 回到正常模式命令行

  • :wq保存並退出vim3d

  • vim的簡單使用參考:code

從新打開終端便可看到提示效果

  • 灰色即爲提示
    替代文字blog

相關文章
相關標籤/搜索