美文网首页SpringMVC
iTerm2安装、配置和使用

iTerm2安装、配置和使用

作者: ouisun | 来源:发表于2019-07-31 14:25 被阅读0次

    一、iTerm2简介

    iTerm 2 is a terminal emulator for Mac OS X that does amazing things.

    1. 安装

    官网下载:http://iterm2.com/

    Term2 是一款完全免费的,专为 Mac OS 用户打造的命令行应用。直接在官网上下载。

    下载的是压缩文件,解压后是执行程序文件,你可以直接双击,或者直接将它拖到 Applications 目录下。

    或者你可以直接使用 Homebrew 进行安装:

    brew cask install iterm2
    

    2. 配置

    • 设置ITerm2为默认终端


      设置ITerm2为默认终端
    • 配置iTerm2主题
      iTerm2 最常用的主题是 Solarized Dark theme,下载地址:http://ethanschoonover.com/solarized
      下载的是压缩文件,你先解压一下,然后打开 iTerm2,按 Command + , 键,打开 Preferences 配置界面,然后 Profiles -> Colors -> Color Presets -> Import,选择刚才解压的 solarized->iterm2-colors-solarized->Solarized Dark.itermcolors 文件,导入成功,最后选择 Solarized Dark 主题,就可以了。

    新版本中该字体已经存在,不需要导入可直接选择。

    配置 iTerm2 主题

    二、安装 oh-my-zsh

    1. 查看系统有几个shell

    cat /etc/shells
    # List of acceptable shells for chpass(1).
    # Ftpd will not allow users to connect who are not using
    # one of these shells.
    
    /bin/bash
    /bin/csh
    /bin/ksh
    /bin/sh
    /bin/tcsh
    /bin/zsh
    

    bash是mac中terminal自带的shell,把它换成zsh,这个的功能要多得多。拥有语法高亮,命令行tab补全,自动提示符,显示Git仓库状态等功能。

    使用下面命令设置默认shell,bash和zsh切换

    # 切换到bash
    chsh -s /bin/bash
    
    # 切换到zsh
    chsh -s /bin/zsh
    

    记得输入切换命令后,要重新打开终端terminal才生效哦!

    1.1 安装最新版本 zsh

    github安装地址:https://github.com/robbyrussell/oh-my-zsh/wiki/Installing-ZSH

    在 macOS 中,已经自带了 /bin/zsh,但是它未必是最新版本。

    可以通过执行 echo $SHELL 查看 当前所使用的是哪个版本的shells,(所有shells 可在/etc/shells 中查看 )

    • macOS下安装
    brew install zsh zsh-completions
    

    由于是用brew安装,所以新版 zsh 文件是在 /usr/local/bin/zsh

    • /etc/shells配置中追加 /usr/local/bin/zsh,添加后内容如下:
    /bin/bash
    /bin/csh
    /bin/ksh
    /bin/sh
    /bin/tcsh
    /bin/zsh
    
    # 追加 brew 安装的最新版本zsh
    /usr/local/bin/zsh
    

    如果不在/etc/shells配置文件中添加 /usr/local/bin/zsh,那在执行chsh时会报错,提示 non-standard shell。

    • 切换 新 zsh
    chsh -s /usr/local/bin/zsh
    

    2. 安装oh-my-zsh

    官网地址:https://ohmyz.sh/
    github地址:https://github.com/robbyrussell/oh-my-zsh

    • 使用 curl 安装:
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    
    • 使用 wget 安装:
    sh -c "$(wget -O- https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    
    • zsh 设置为当前用户的默认 Shell
    chsh -s /bin/zsh
    

    3. 配置oh-my-zsh主题

    github主题使用地址:https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
    zsh主题列表:https://github.com/robbyrussell/oh-my-zsh/tree/master/themes/

    安装成功后,用户$HOME目录下会出现 .zshrc 文件,用 vim ~/.zshrc 打开隐藏文件,将主题配置修改为 agnoster,修改如下

    ZSH_THEME="agnoster"
    

    PS:agnoster 是比较常用的 zsh 主题之一,你可以挑选你喜欢的主题 zsh主题列表

    4. Powerline 字体下载安装

    Powerline下载:https://github.com/powerline/fonts

    iTerm2 改为主题之后,会出现乱码的情况。需要安装 Powerline 字体来解决。

    # clone 先克隆
    git clone https://github.com/powerline/fonts.git
    # install 后安装
    cd fonts
    ./install.sh
    

    可以按照以上命令进行 powerline 全部字体安装,也可以选择部份字体安装;而我选择 Meslo 一个字体安装

    1. 下载 Meslo 字体下载
    2. 双击字体,安装到 Mac OS 系统字体册

    安装完字体库之后,打开 iTerm2,按 Command + , 键,打开 Preferences 配置界面,然后 Profiles -> Text -> Font -> Chanage Font ,选择 Meslo LG M Regular for Powerline 字体。

    配置 Meslo 字体

    当然,如果你觉得默认的 12px 字体大小不合适,可以自己进行修改。

    5. 设置配色方案

    通过 oh-my-zsh 设置完主题后,使用iTerm2自带的几个背景色显示看得不舒服,下载其他的颜色方案较美观。我选用的是 solarized,效果还不错。点开官网,下载,解压,然后打开 iTerm2 下的偏好设置 preference ,点开 profiles 下的colors 选项,点击右下角的 Color Presets 选项,选择import ,导入解压到的 solarized 文件下的Solarized Dark.itermcolors。后面对vim进行配色的时候也会用到这个solarized

    到这步我们的终端看上去已经非常好看了,这时我们来安装其它插件,让终端看起来更加风骚。

    6. 语法高亮

    6.1 Oh-my-zsh下高亮安装方法【推荐】

    github上说明地址:https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md

    • Clone this repository in oh-my-zsh's plugins directory:
    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
    
    • Activate the plugin in ~/.zshrc:
    plugins=( [plugins...] zsh-syntax-highlighting)
    
    • Restart zsh (such as by opening a new instance of your terminal emulator).

    6.2 使用 Homebrew 安装zsh-syntax-highlighting 插件:

    brew install zsh-syntax-highlighting
    
    • 安装成功之后,编辑 vim ~/.zshrc 文件,在最后一行增加下面配置:
    source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
    
    # 其它地方配置参考
    # source  /usr/local/Cellar/zsh-syntax-highlighting/0.6.0/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
    
    • 执行 source ~/.zshrc 使生效

    7. 自动提示命令

    当我们输入命令时,终端会自动提示你接下来可能要输入的命令,这时按 便可输出这些命令,非常方便。

    • 先克隆zsh-autosuggestions项目,到本地 ~/.oh-my-zsh/custom/plugins 路径下:
    git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
    
    • 然后编辑vim ~/.zshrc文件,找到plugins配置,增加zsh-autosuggestions插件。默认是 plugins=(git)
    plugins=(zsh-autosuggestions git)
    

    有时候因为自动提示命令的颜色和背景颜色很相似,以至于自动填充没有效果,我们可以手动更改下自动填充的颜色配置,我修改的颜色值为:#586e75,示例:

    注:上面声明语法高亮,如果配置不生效的话,在plugins配置,再增加zsh-syntax-highlighting插件试试。

    手动更改背景颜色

    8. iTerm2 隐藏用户名和主机名

    有时候我们的用户名和主机名太长,比如我的xishuai@xishuaideMacBook-Pro,终端显示的时候会很不好看,我们可以手动去除。

    编辑 vim ~/.zshrc 文件,增加 DEFAULT_USER="xishuai" 配置,可在文本最好追加

    我们可以通过whoami 命令,查看当前用户

    9. iTerm2 快速隐藏和显示

    这个功能也非常使用,就是通过快捷键,可以快速的隐藏和打开 iTerm2,
    示例配置(Commond + .):

    hotkey配置 快速隐藏和显示

    iTerm2 快捷命令

    快捷命令说明:

    命令 说明
    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 搜索命令历史

    oh-my-zsh插件

    github插件使用地址:https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins

    通过编辑 ~/.zshrc文件来启用所需的插件

    plugins=(rails git ruby)
    

    参考资料:
    https://www.cnblogs.com/xishuai/p/mac-iterm2.html
    https://www.jianshu.com/p/405956cdaca6

    相关文章

      网友评论

        本文标题:iTerm2安装、配置和使用

        本文链接:https://www.haomeiwen.com/subject/vbrzrctx.html