参考文章:https://www.jianshu.com/p/ba08713c2b19
iTerm2下载地址:https://www.iterm2.com/downloads.html
或者homebrew安装:brew cask install iterm2
1、特点
- 主题选择
- 声明高亮
- 自动填充建议
- 隐藏用户名和主机名
- 分屏效果等
2、shell常用命令
1、查看系统shell列表:cat /etc/shells
2、切换shell:chsh -s /bin/zsh 配置文件:~/.bash_profile
chsh -s /bin/bash 配置文件:~/.zshrc
3、打开后顶部栏会显示当前的shell
3、主题配置
1、solarized: https://github.com/altercation/solarized
4、主题安装步骤
- 下载、解压、打开ITerm2、打开Preferences配置界面
- Profiles -> Colors -> Color Presets 在下拉列表中import,选中解压的文件,导入iterm2-colors-solarized 文件夹下的 Solarized Dark.itermcolors 文件
- 导入成功后,在Color Presets下选择Solarized Dark主题
5、配置ITerm2的背景图片
- 打开item2的Preferences的Profile -> Window -> Background image,选择一张自定义图片即可
- 背景图:http://wx1.sinaimg.cn/large/81f8a509gy1fnjdvkkwgoj20zk0m8ak8.jpg
-
配置 Oh My Zsh
- Oh My Zsh 是对主题的进一步扩展,下载地址:https://github.com/ohmyzsh/ohmyzsh
安装方式
1、一键安装:sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"-
安装好之后,需要把Zsh设置为当前用户的默认Shell
- 切换shell:chsh -s /bin/zsh
-
修改主题为 ZSH_THEME=“agnoster”
- vim ~/.zshrc 修改即可
下载之后:打开Preference -> Profile -> Text -> Font -> Change Font
声明高亮:特殊命令和错误命令 高亮显示
-git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
然后编辑配置文件 插件中添加(plugins=(git zsh-syntax-highlightint)-
自动建议填充
- git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
常用命令
command + t 新建标签
command + w 关闭标签
command + 数字 command + 左右方向键 切换标签
command + enter 切换全屏
command + f 查找
command + d 水平分屏
command + shift + d 垂直分屏
command + option + 方向键 command + [ 或 command + ] 切换屏幕
command + ; 查看历史命令
command + shift + h 查看剪贴板历史
ctrl + u 清除当前行
ctrl + l 清屏
ctrl + a 到行首
ctrl + e 到行尾
ctrl + f/b 前进后退
ctrl + p 上一条命令
ctrl + r 搜索命令历史