让macOS更好用
Posted 爱学习的老聂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了让macOS更好用相关的知识,希望对你有一定的参考价值。
苹果的macOS越来越好用了,常用软件都有,而且对于开发者很友好,接近生产环境,让开发者朋友们爱不释手。
不管你是开发者还是爱好者,无论你使用白苹果还是黑苹果,这边文章都会对你有一定的帮助。
进入Mac系统后,第一件事一定是安装Xcode Command Line Tools,许多软件都依赖此工具包
xcode-select --install
第二件事就是允许所有来源软件的安装
sudo spctl --master-disable
第三件事:安装HomeBrew,这里使用大神写好的脚本,已经替换国内源,安装飞快
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
# 安装完成后执行
brew update
brew doctor
所有配置完成后,使用brew安装常用软件,cask源可能会稍慢,但是二进制下载还是很快的。
第四:安装oh-my-zsh
git clone https://gitee.com/mirrors/oh-my-zsh.git oh-my-zsh
cd oh-my-zsh/tools
vim install.sh
修改如下代码:
# Default settings
ZSH=${ZSH:-~/.oh-my-zsh}
REPO=${REPO:-ohmyzsh/ohmyzsh}
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
BRANCH=${BRANCH:-master}
为
# Default settings
ZSH=${ZSH:-~/.oh-my-zsh}
REPO=${REPO:-mirrors/oh-my-zsh}
REMOTE=${REMOTE:-https://gitee.com/${REPO}.git}
BRANCH=${BRANCH:-master}
然后执行
sh install.sh
安装zsh插件
## 进入插件目录
cd ~/.oh-my-zsh/custom/plugins/
# 语法高亮插件
# 原始地址
# git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
# gitee加速地址
git clone https://gitee.com/lomot/zsh-syntax-highlighting.git
# 命令提示插件
# 原始地址
# git clone https://github.com/zsh-users/zsh-autosuggestions.git
# gitee加速地址
git clone https://gitee.com/lomot/zsh-autosuggestions.git
# 自动跳转插件autojump,zsh和autojump的组合形成了zsh下最强悍的插件。
brew install autojump
然后修改zsh配置文件:
vim .zshrc
# 找到plugins,并修改如下:
plugins=(
git
sublime # 需要自行安装sublime text
zsh-autosuggestions
zsh-syntax-highlighting
)
# 在配置文件末尾添加如下代码,使autojump生效
[[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && . ~/.autojump/etc/profile.d/autojump.sh
# 使配置文件生效
source ~/.zshrc
配置完成,可以欢快的玩耍了。
以上是关于让macOS更好用的主要内容,如果未能解决你的问题,请参考以下文章