本文作者:丁辉
部署 Oh My Zsh
本文介绍如何安装”Oh My Zsh” 终端和 “zsh-autosuggestions” 自动补全工具
打开 Mac 终端输入下载命令(下列三种方式都可以,建议使用 curl 因为 mac 一般自带哈哈)
Method Command curl sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
wget sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fetch sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
启用插件
1
vi ~/.zshrc
替换如下内容
原内容如下
1
plugins=(git)
修改后
1
2
3
4
5
6
7
8
9plugins=(
git
bundler
dotenv
macos
rake
rbenv
ruby
)重启终端查看效果
部署 zsh-autosuggestions
克隆仓库
1
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
修改配置文件
1
vim ~/.zshrc
添加
zsh-autosuggestions
到 plugins=() 模块内1
2
3plugins=(
zsh-autosuggestions
)重启终端查看效果
更换主题
编辑配置文件
1
~/.zshrc
找到
ZSH_THEME
配置1
ZSH_THEME="agnoster"
安装字体
克隆仓库
1
git clone https://github.com/powerline/fonts.git --depth=1
安装
1
2cd fonts
./install.sh清除安装包
1
2cd ..
rm -rf fonts
更换字体
Vscode更换字体
打开vscode > Settings > 搜索font > 找到
Terminal › Integrated: Font Family
填写字体(格式如下)
可以用 “,” 来分隔多个字体
1
Go Mono for Powerline,Hack
Mac 默认终端更换字体
点击左上角终端 > 偏好设置 > 描述文件 > 更改字体 > 点击搜索添加
Item2 终端更换字体
点击左上角iTerm2 > Preferences > Profiles > Text > 勾选 Use built-in Powerline glyphs
I'm so cute. Please give me money.
- 本文链接: https://blog.offends.cn/System/MacBook/Mac安装终端工具.html
- 版权声明: 本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。