本文参考了网上一些博客,并进行了时效性更新和问题处理更新。谁不想用帅气的shell命令向非计算机的同学炫耀呢。竖屏一转,开始吃饭。
显示隐藏文件
这个命令其实经常用到,不如 .zshrc等隐藏文件怎么可视化管理呢,2333.
Shift + Command + .
第一步,安装 HomeBrew
MacOS的必备包管理Tools。没安装过的可以通过以下指令可以安装,安装过的额也可以更新。
如遇到端口403,请开全局梯子或者更换Gitee 或者清华的源。Gitee的安装.sh让你选源。
这里清华源在之后的update里回遇到无法更新问题,这里建议全局梯子。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
第二步,更新 zsh、git
macOS 一般会自带 zsh,不过版本会比较早,我们先更新一下,以便使用最新特性。
brew install zsh
第三步,将bash切换至 zsh 并安装 oh-my-zsh
查看当前使用的 shell
echo $SHELL
/bin/bash
查看安装的 shell
cat /etc/shells
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
切换为 zsh
chsh -s /bin/zsh
重启终端即可使用 zsh。
接下来安装 oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
遇到443端口占用,请复制链接到浏览器,下载install.sh文件。 然后用指令安装。
sh /Users/baron/Downloads/install.sh
安装完成后,终端展示如下内容:
__ __
____ / /_ ____ ___ __ __ ____ _____/ /_
/ __ \/ __ \ / __ `__ \/ / / / /_ / / ___/ __ \
/ /_/ / / / / / / / / / / /_/ / / /_(__ ) / / /
\____/_/ /_/ /_/ /_/ /_/\__, / /___/____/_/ /_/
/____/ ....is now installed!
Before you scream Oh My Zsh! look over the `.zshrc` file to select plugins, themes, and options.
• Follow us on Twitter: @ohmyzsh
• Join our Discord community: Discord server
• Get stickers, t-shirts, coffee mugs and more: Planet Argon Shop
第四步,配置 oh-my-zsh
看到这里,安装流程已经完毕啦,执行最后的配置,就可以进行体验了。
打开 oh-my-zsh 配置文件
# 打开 zshrc 文件进行编辑,也可以使用 vim 编辑器
open ~/.zshrc
# 本人使用的是 vs code
open ~/.zshrc -a Visual\ Studio\ Code
主题
配置项 ZSH_THEME
即为 oh-my-zsh 的主题配置,oh-my-zsh 的 GitHub Wiki 页面提供了 主题列表
当设置为 ZSH_THEME=random
时,每次打开终端都会使用一种随机的主题。
agnoster.zsh-theme
插件
plugins=(git osx autojump zsh-autosuggestions zsh-syntax-highlighting)
注意:其中 zsh-autosuggestions 和 zsh-syntax-highlighting 是自定义安装的插件,需要用 git 将插件 clone 到指定插件目录下:
# 自动提示插件
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
# 语法高亮插件
git clone git://github.com/zsh-users/zsh-syntax-highlighting $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
需要其他插件的可以自行安装,如果插件未安装,开启终端的时候会报错,按照错误提示,安装对应的插件即可。
更新配置
source ~/.zshrc
更新完配置即可生效,不想更新配置的话,新开一个终端同样可以生效。
在 iTerm2 配置 Meslo 字体
如果你之前没有单独设置过,一定会出现这个报错。
**NOTE:** In all likelihood, you will need to install a [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts) for this theme to render correctly.
使用上面的主题,需要 Meslo 字体支持,要不然会出现乱码的情况,字体下载地址:Meslo LG M Regular for Powerline.ttf
下载好之后,直接在 Mac OS 中安装即可。
然后打开 iTerm2,按Command + ,
键,打开 Preferences 配置界面,然后Profiles -> Text -> Font -> Chanage Font
,选择 Meslo LG M Regular for Powerline 字体。
本文参考:博客