作者:小虾米 发表时间:2024-03-13 17:56:02 类别:Linux
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
安装完成会把本地原有的 ~/.zshrc文件备份为/Users/your-name/.zshrc.pre-oh-my-zsh,请自行恢复需要的alias
vim ~/.zshrc
ZSH_THEME="agnoster" #推荐这个主题
#更多主题请访问官网,地址见文末
安装agnoster的字体
git clone https://github.com/powerline/fonts.git
cd fonts
./install.sh
如果使用的是item2,则修改默认字体
Profiles -> Text -> Font :选择 Meslo LG L for Powerline等系列字体
语法高亮
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
键自动补全、历史记录、命令提示
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
修改文件
vim ~/.zshrc
plugins=(git aliases zsh-syntax-highlighting zsh-autosuggestions)
source ~/.zshrc
原创,转载请注明来源