在初始化中电脑中会安装iterms工具,重新打开之后就是iterms的命令行页面
先看图
效果图
接下来就是配置关于zsh主题的相关内容
1.下载oh my zsh
,并切换shell为zsh
1\. 下载oh-my-zsh,这里建议使用方法二。
方式一: 使用git 这里下载到~/.oh-my-zsh下
$ git clone <https://github.com/robbyrussell/oh-my-zsh.git> ~/.oh-my-zsh
方式二: 使用curl
$ sh -c "$(curl -fsSL <https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh>)"
方式三: 使用wget
$ sh -c "$(wget <https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh> -O -)"
2\. 备份配置文件(可省略)
$ cp ~/.zshrc ~/.zshrc.orig
2\. 创建一个新的配置文件
$ cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
切换默认shell为zsh
$ chsh -s /bin/zsh
- 更换zsh的主题为
Dracula
(当然也有其他主题:https://github.com/mbadolato/iTerm2-Color-Schemes),这里只是其中一个主题
1\. 下载主题文件
$ git clone <https://github.com/dracula/zsh.git>
2\. 创建一个指向Oh my zsh主题文件夹的符号链接
DRACULA_THEME是你刚才下载主题的目录
$ ln -s $DRACULA_THEME/dracula.zsh-theme ~/.oh-my-zsh/themes/dracula.zsh-theme
或者你可以移动主题文件dracula.zsh-theme到~/.oh-my-zsh/themes/下
提示: 显示隐藏文件夹的快捷键为command+shift+.
3\. 修改zsh主题。编辑~(用户名)下.zshrc文件,修改ZSH_THEME为"dracula"
$ vim ~/.zshrc
.zshrc配置文件
到这里,已经完成了zsh主题的配置,但是距离效果图还差那么一点点,那就是iterm2的主题和命令高亮插件
3.更换iterm2的主题为Dracula
下载iterm2的Dracula主题
$ git clone <https://github.com/dracula/iterm.git>
设置主题:
- iTerm2 > Preferences > Profiles > Colors Tab
- Open the Color Presets...
- 从列表中选择import
- 选择刚才下载主题中
Dracula.itermcolors
文件,确定
4.命令高亮插件zsh-syntax-highlighting
(命令正确绿色,命令错误红色)
下载命令高亮插件 这里下载到用户名下.zsh文件夹下
$ sudo git clone <https://github.com/zsh-users/zsh-syntax-highlighting> ~/.zsh/zsh-syntax-highlighting
编辑配置文件,使用插件
$ vim ~/.zshrc
添加以下内容:
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
!wq 保存退出。
重点:如果重新打开之后,有很多warning信息
Last login: Tue Jul 9 14:33:21 on ttys001
/Users/tomcaflisch/.oh-my-zsh/themes/dracula.zsh-theme:source:15: no such file or directory: /Users/tomcaflisch/.oh-my-zsh/themes/lib/async.zsh
/Users/tomcaflisch/.oh-my-zsh/themes/dracula.zsh-theme:18: command not found: async_init
dracula_git_async:1: command not found: async_start_worker
dracula_git_async:2: command not found: async_regist
dracula_git_async:3: command not found: async_job
解决方法是,将刚刚 git 下载的文件夹中的 lib 文件夹,mv 到 oh-my-zsh/thems/lib
copy the /lib folder into my $OH_MY_ZSH/themes/ folder as well
网友评论