一、安装oh my zsh
1. zsh是什么?🤔
Zsh
是一款强大的虚拟终端,既是一个系统的虚拟终端,也可以作为一个脚本语言的交互解析器。
2. 如何查看是否安装了zsh?🤔
- 在终端输入:
$ zsh --version
- 我的输出:
zsh 5.7.1 (x86_64-apple-darwin19.0)
这表示我已经安装了zsh
3. oh my zsh
① 安装
可以通过 curl
或 wget
两种方式来安装,用一条命令即可安装。
- curl安装
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- wget安装
$ sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
② 简单配置
设置固定主题
- 终端输入:
open ~/.zshrc
- 找到
ZSH_THEME="robbyrussell"
,这里,已经设置了默认主题robbyrussell
,若要修改主题请按此格式:ZSH_THEME="主题名称"
- 保存文件,重新打开终端
设置随机主题
- 终端输入:
open ~/.zshrc
- 主题设置为:
ZSH_THEME="random"
- 这样每次打开终端时,主题都是随机的。
- 例:下一次打开终端时,会输出形如
[oh-my-zsh] Random theme 'xiong-chiamiov' loaded
的语句,'xiong-chiamiov'即主题名称,如果你喜欢这个主题,可以把它设置在你的.zshrc中。
查看主题名称
oh my zsh
默认自带了一些默认主题,存放在 ~/.oh-my-zsh/themes
目录中。我们可以查看这些主题:
$ cd ~/.oh-my-zsh/themes && ls
③ 卸载oh my zsh
$ uninstall_oh_my_zsh
Are you sure you want to remove Oh My Zsh? [y/N] Y
④ oh my zsh 的自动更新提示误触关掉了解决办法
$ upgrade_oh_my_zsh
二、安装autojump
插件功能:实现目录间快速跳转,想去哪个目录直接 j + 目录名,不用再频繁的 cd 了!
1. 安装步骤
- 在终端输入:
$ brew install autojump
- 输出:
==> Downloading https://homebrew.bintray.com/bottles/autojump-22.5.3.catalina.bo
######################################################################## 100.0%
==> Pouring autojump-22.5.3.catalina.bottle.tar.gz
==> Caveats
Add the following line to your ~/.bash_profile or ~/.zshrc file (and remember
to source the file to update your current session):
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh
If you use the Fish shell then add the following line to your ~/.config/fish/config.fish:
[ -f /usr/local/share/autojump/autojump.fish ]; and source /usr/local/share/autojump/autojump.fish
zsh completions have been installed to:
/usr/local/share/zsh/site-functions
==> Summary
🍺 /usr/local/Cellar/autojump/22.5.3: 20 files, 169.3KB
- 根据提示,在
~/.zshrc
文件中加入:
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh
- 使用
source
命令更新配置文件:
$ source ~/.zshrc
- 这样就可以根据你的
cd
历史记录,使用j
命令快速跳转到目标目录,而不需要多次cd
啦~
三、安装zsh-syntax-highlighting
插件功能:这个包为
shell zsh
提供语法突出显示。它允许高亮显示在zsh
提示符下输入到交互式终端的命令。这有助于在运行命令之前检查它们,特别是在捕获语法错误方面。
例:在你输入某个命令时,如果该命令不存在,那么它显示为红色;否则,它会变成绿色。
1. 文档
2. 安装步骤
- 在终端输入:
$ brew install zsh-syntax-highlighting
- 输出:
==> Downloading https://homebrew.bintray.com/bottles/zsh-syntax-highlighting-0.7.1.catal
######################################################################## 100.0%
==> Pouring zsh-syntax-highlighting-0.7.1.catalina.bottle.tar.gz
==> Caveats
To activate the syntax highlighting, add the following at the end of your .zshrc:
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
If you receive "highlighters directory not found" error message,
you may need to add the following to your .zshenv:
export ZSH_HIGHLIGHT_HIGHLIGHTERS_DIR=/usr/local/share/zsh-syntax-highlighting/highlighters
==> Summary
🍺 /usr/local/Cellar/zsh-syntax-highlighting/0.7.1: 27 files, 164.4KB
- 在
~/.zshrc
文件中加入:
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
- 使用
source
命令更新配置文件:
$ source ~/.zshrc
四、安装zsh-autosuggestion
插件功能:输入命令时可提示自动补全(灰色部分),按tab键(→ )即可补全。
1. 文档:
2. 安装步骤
- 在终端输入:
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
- 输出:
Cloning into '/Users/xxx/.zsh/zsh-autosuggestions'...
remote: Enumerating objects: 11, done.
remote: Counting objects: 100% (11/11), done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 2396 (delta 2), reused 3 (delta 1), pack-reused 2385
Receiving objects: 100% (2396/2396), 545.28 KiB | 5.00 KiB/s, done.
Resolving deltas: 100% (1533/1533), done.
- 在
~/.zshrc
s文件中加入:
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
- 使用
source
命令更新配置文件:
$ source ~/.zshrc