1.Homebrew
安装一些不再AppStore上架的免费开源库
homebrew
1.无法升级
$ cd "$(brew --repo)" && git remote set-url origin https://git.coding.net/homebrew/homebrew.git
$ cd $home && brew update
2.Oh my zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
1.zsh-autosuggestion 提示插件
cd ~/.oh-my-zsh/custom/plugins/
git clone https://github.com/zsh-users/zsh-autosuggestions
vi ~/.zshrc
进入编辑模式,将plugin=(git)变为
plugins=(git zsh-autosuggestions)
网友评论