安裝zsh配置oh-my-zsh和自動補全插件

Linux學習筆記

Centsos 安裝zsh配置oh-my-zsh和自動補全工具* 查看當前shell

echo $SHELLhtml

  • 安裝zsh
    yum install -y zsh
  • 切換默認shell
    chsh -s /bin/zsh
  • 安裝git
    yum install -y git
  • 安裝oh-my-zsh
  1. 自動安裝
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  2. 手動安裝
    git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
  3. 複製配置文件
    cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
  4. 修改主題
    vim .zshrc 修改ZSH_THEME="ys」
  • 安裝自動補全插件
    官網:Incremental completion on zsh
    wget -O incr-0.2.zsh https://mimosa-pudica.net/src/incr-0.2.zsh
  • 複製incr*.zsh文件到plugins
    cp incr-0.2.zsh .oh-my-zsh/plugins/
  • 在.zshrc 文件末尾添加下面這行
    source ~/.oh-my-zsh/plugins/incr*.zsh
  • 從新打開終端,以使配置生效
相關文章
相關標籤/搜索