jingleisi 2019-06-30
iTerm2比mac自带终端更强大的终端软件,直接在官网下载:http://iterm2.com/
cmd+.
官网:https://ethanschoonover.com/s...
下载:http://ethanschoonover.com/so...
解压后进入iterm2-colors-solarized/
目录下,有两个主题文件,在iTerm2中导入即可
github:https://github.com/robbyrussell/oh-my-zsh
可以使用以下任意一种方式安装:
vim ~/.zshrc # 找到 ZSH_THEME="robbyrussell" 这一行 # 修改为 ZSH_THEME="agnoster" (也可以使用ys) # 保存退出 source ~/.zshrc
注意:这时候有可能会出现乱码,安装好PowerLine字体后解决。
cd ~/Downloads git clone https://github.com/powerline/fonts.git cd fonts bash install.sh # 安装字体
修改iTerm2的默认字体
zsh: command not found: xxx
如果之前是用~/.bash_profile
配置环境变量的可能会出现这个问题,执行以下操作可以解决:
vim ~/.zshrc # 找到『# User configuration』这行 # 在下方添加 『source ~/.bash_profile』 # 保存退出 source ~/.zshrc
重启命令行窗口后解决
brew install zsh-syntax-highlighting source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.zshrc