概览
- 安装 iterm:
- 切换 zsh
- 安装 oh-my-zsh
- 安装 iterm 主题
- 安装 powerlevel9k
- 安装 tmux config
- 安装 zsh-autosuggestions
- 安装 zsh-syntax-highlighting
- 安装 colorls
1.安装 iterm
https://iterm2.com/downloads/stable/latest
将iterm设为你的默认终端(灰色代表已经是默认):
2.切换到zsh
mac上默认bash,但是自带有zsh,切换就行:chsh -s /bin/zsh
3.安装oh-my-zsh
- 通过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)"
curl无法上网,切换代理(用户HOME下编辑该文件|没有就创建):
-
将下面的配置文件解压到你的HOME
(~/)
下:https://lmmarise.lanzous.com/iyAEBmw1v7i
注意,有四个文件,点开头的隐藏文件finder可能看不到。
4.安装iterm主题
-
iterm选择主题
5. 安装 powerlevel10k主题
-
手动安装
$
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ~/powerlevel10k
$
echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
-
使用mac包管理器自动安装
- 先安装mac包管理工具
$/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
- 使用包管理工具进行安装
brew install romkatv/powerlevel10k/powerlevel10k echo "source $(brew --prefix)/opt/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc
6. 安装tmux,非必要
$ git clone https://github.com/samoshkin/tmux-config.git
$ ./tmux-config/install.sh
7. 安装 zsh-autosuggestions提示
$ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
8. 安装 zsh-syntax-highlighting
$ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
9. 安装colors
使用mac自带的gem进行安装:
gem install colorls
使配置生效
其它
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/180315.html