sudo apt-get install zsh
zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
无法链接raw.github的话就改用
wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh
chmod +x install.sh
./install.sh
如果卡死了,说明无法使用github的文件,改为gitee的就好啦
rm -r .oh-my-zsh
vim install.sh
找到如下部分
# Default settings
ZSH=${ZSH:-~/.oh-my-zsh}
REPO=${REPO:-ohmyzsh/ohmyzsh}
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
BRANCH=${BRANCH:-master}
更改中间的两行
REPO=${REPO:-mirrors/oh-my-zsh}
REMOTE=${REMOTE:-https://gitee.com/${REPO}.git}
摁esc
键,再输入:wq
保存即可。再重新执行./install.sh
即可
配置完毕之后记得使用 source .zshrc
进行更新
vi ~/.zshrc
#更改文件
ZSH_THEME="ys"
plugins=(
git
autojump
z
extract
zsh-syntax-highlighting
zsh-autosuggestions
)
$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -k)";
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
sudo apt-get install autojump
原文:https://www.cnblogs.com/kangshuaibo/p/14748683.html