Mac OS 配置终端神器 oh-my-zsh
Posted little lunatic
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac OS 配置终端神器 oh-my-zsh相关的知识,希望对你有一定的参考价值。
1.安装zsh、git
brew update
brew install zsh
-
踩坑点:brew update 报错
-
解决方法:
cd /opt/homebrew/Library/Taps/homebrew/homebrew-services/
git remote -v
git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-services
2.设置默认终端
#查看当前shell
echo $SHELL
#查看安装的shells
cat /etc/shells
#切换shell
chsh -s /bin/zsh
3.安装oh-my-zsh
#安装wget
brew install libunistring
brew install openssl@1.1
brew install wget
#安装oh-my-zsh
cd ~
wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh
sh install.sh
rm -rf install.sh
4.配置oh-my-zsh
#下载高亮插件
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
#下载字体,挨个下载安装
https://github.com/romkatv/powerlevel10k/blob/master/font.md
#终端设置字体:command + ,
#下载主题
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
#写入.zshrc配置文件
echo \'source ~/powerlevel10k/powerlevel10k.zsh-theme\' >>~/.zshrc
echo \'plugins=(zsh-syntax-highlighting zsh-autosuggestions)\' >>~/.zshrc
#刷新生效
source ~/.zshrc
使用默认配置就行,不用去自定义了,上效果图:
mac 技能- 终端(oh-my-zsh)终极美化及必备插件推荐
参考技术A 如果你使用Mac进行开发,那么Terminal.app应该是你使用非常频繁的app了。初体验Terminal时你可能觉得单调乏味,阅读密密麻麻的内容也很费劲。但是如果你跟着我一起配置它,就会发现你平时觉得繁琐,不方便的地方其实都可以被完美解决,并且颜值也高了许多。我们准备这样改造Terminal
修改Terminal的Profile: 让Terminal配色更美观
安装oh-my-zsh: 将Terminal的shell从bash改成更强大的zsh
安装oh-my-zsh主题: 美化oh-my-zsh
安装oh-my-zsh必备插件: 让Terminal具有更高级和便利的功能
准备工作
建议先安装homebrew, 方便后续工具安装:
/usr/bin/ruby -e"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
修改Terminal Profile 主题设置
在GitHub的 osx-terminal-theme 项目主页里寻找你喜欢的主题
在schemes目录里找到对应的主题文件并双击安装到Terminal, 设置为默认
安装oh-my-zsh
先安装zsh:
brew install zsh
再安装oh-my-zsh:
sh -c"$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
安装oh-my-zsh主题
内置主题列表
oh-my-zsh提供一批内置主题,可以直接设置使用
在内置主题列表寻找你你喜欢的主题: https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
在~/.zshrc配置文件里设置ZSH_THEME为你的主题名称
激活设置source ~/.zshrc
第三方主题列表
许多第三方也开发了供oh-my-zsh使用的主题,可以去第三方主题列表查看和安装:
https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes
安装oh-my-zsh必备插件
oh-my-zsh有非常丰富的插件可供使用,下面列举一些必备插件,可以大幅提高生产力。
示例如下:
# ~/.zshrc:plugins=(git zsh-syntax-highlighting)
git
自带插件,可以使用缩写命令, 比如 gaa -> git add --all, 通过alias | grep git查看所有支持缩写命令
激活: 添加到~/.zshrc的plugins列表
extract
自带插件,不用再使用复杂的tar来解压压缩包了
激活: 添加到~/.zshrc的plugins列表
autojump
使用j命令直接快速进入某个目录, 比如 j Downloads -> cd ~/Downloads
安装: brew install autojump
安装完按照提示在~/.zshrc配置文件添加:
[-f /usr/local/etc/profile.d/autojump.sh]&&. /usr/local/etc/profile.d/autojump.sh
zsh-syntax-highlighting
命令高亮插件,命令不再只是同一个颜色了
安装: brew install zsh-syntax-highlighting
添加 zsh-syntax-highlighting到~/.zshtcplugins列表。
其他安装方法参考: https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md
zsh-autosuggestions
输入时按右方向键→自动补全命令
安装: brew install zsh-autosuggestions
安装完按照提示在~/.zshrc配置文件添加:
source/usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
以上是关于Mac OS 配置终端神器 oh-my-zsh的主要内容,如果未能解决你的问题,请参考以下文章
Mac下终端配置(item2 + oh-my-zsh + solarized配色方案)
Mac下终端配置(item2 + oh-my-zsh + solarized配色方案)