安装oh-my-zsh

作者:小虾米 发表时间: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

ohmyzsh官网地址

 

原创,转载请注明来源

沪ICP备17012897号-1 | Copyright ©2024