zsh的安装和配置(含git clone 提速)

一、zsh安装

1.sudo apt install zsh
在这里插入图片描述

重启虚拟机即可解决

2.chsh -s /bin/zsh
将zsh设置为默认shell,重启虚拟机后打开的shell即zsh:
zsh的安装和配置(含git clone 提速)_第1张图片

3.安装 Oh My Zsh

wget --no-check-certificate https://github.com.cnpmjs.org/robbyrussell/oh-my-zsh/raw/master/tools/install.sh 
bash ./install.sh

二、插件安装

1.安装Powerlevel9k主题
在这里插入图片描述

解决办法:使用github的镜像网站进行访问
git clone https://github.com.cnpmjs.org/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
zsh的安装和配置(含git clone 提速)_第2张图片
在此之前,可能会遇到这个问题:ubuntu无法访问github的解决办法

我不喜欢这个主题,跳过

2.安装autojump

git clone https://github.com.cnpmjs.org/joelthelion/autojump.git
cd autojump
./install.py

功能:更快地跳转到目录

3.安装zsh-autosuggestions

git clone https://github.com.cnpmjs.org/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

功能:在命令行键入命令时的历史命令建议

4.安装zsh-syntax-highlighting

git clone https://github.com.cnpmjs.org/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

功能:命令行语法高亮

三、配置(.zshrc)

export ZSH="/home/forrest/.oh-my-zsh"
#主题
ZSH_THEME="ys"
#启动错误命令自动更正
ENABLE_CORRECTION="true

plugins=(
    git
    autojump
    zsh-autosuggestions
    zsh-syntax-highlighting
)

source $ZSH/oh-my-zsh.sh
#autojump的配置
[[ -s /home/forrest/.autojump/etc/profile.d/autojump.sh ]] && source /home/forrest/.autojump/etc/profile.d/autojump.sh

export EDITOR=vim

export PATH=$PATH:/home/forrest/.local/bin

四、参考材料

1.Ubuntu 下 Oh My Zsh 的最佳实践「安装及配置」

你可能感兴趣的:(搭建环境,工具,zsh)