iterm2 相关介绍

一、安装
到官方网站去下载一个直接安装就好了 https://iterm2.com/downloads.html

二、配置颜色

  1. 到官方的主题配置网站https://github.com/mbadolato/iTerm2-Color-Schemes下载解压到本地
  2. 打开iterm(preferences > profiles > colors)


    iterm2 相关介绍_第1张图片
    step1.png
iterm2 相关介绍_第2张图片
step.png
  1. 然后选择倒入即import
    打开刚下载解压好的文件夹,打开schemes 文件夹,全选那些配色方案,点open,这样就把所有的配色方案导入了

  2. 配置.bash_profile

vim $HOME/.bash_profile

添加下面一段代码

  CLICOLOR=1
  LSCOLORS=gxfxcxdxegedabagacad
  export PS1='[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$'
  export TERM=xterm-color
source $HOME/.bash_profile

三、常用快捷键

  • 新建标签 command+t
  • 关闭标签 command+w
  • 切换全屏 command+enter
  • 查找 command+f
  • 垂直分屏 command+d
  • 水平分屏 command+shift+d
  • 切换分屏 command+option+方向键
  • 查看历史 command+;

你可能感兴趣的:(iterm2 相关介绍)