首页 > 其他 > 详细

zsh & oh-my-zsh

时间:2021-05-10 00:07:33      阅读:16      评论:0      收藏:0      [点我收藏+]

安装zsh & oh-my-zsh

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)"; 

安装插件

highlight

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

autosuggestions

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

autojump

sudo apt-get install autojump

zsh & oh-my-zsh

原文:https://www.cnblogs.com/kangshuaibo/p/14748683.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!