mac terminal 配置

下面三个blog 差不多:

  • reference 1
  • reference 2

总结:

  • iTerm2 替代 mac 默认terminal

  • zsh 替代 bash

    # 改成zsh
    chsh -s /bin/zsh
    # 回到bash
    chsh -s /bin/bash
    
  • oh-my-zsh

    # curl 方式安装:
    sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    # bash
    sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
    
  • Powerline fonts
    如果不安装这个东东,后面选择zsh的一些主题时,会乱码

    git clone https://github.com/powerline/fonts.git --depth=1; cd fonts; ./install.sh; cd ..; rm -rf fonts
    

    然后在 iTerm2 中选择字体和配色

  • 更改 ~/.zshrc 的设置

    • theme
      # 列出所有可用theme
      ls ~/.oh-my-zsh/themes
      
      也可以把 theme 设置成 random,每次新开个tab/window 时会使用随机主题
      # 查看当前的随机主题
      echo $RANDOM_THEME
      
      比较喜欢的主题是 sunaku
    • user 提示
      DEFAULT_USER="user"
      
  • zsh 插件

    • zsh-syntax-highlighting

      git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
      

      然后修改 .zshrc, 在plugin 里面加入
      zsh-syntax-highlighting

    • zsh-autosuggestions , 感觉没太大必要

  • iTerm2 默认的配色比较难看
    可以改成这个配色,下载文件或者clone repo,然后在iTerm2 的color 设置中,点击import

    https://github.com/mbadolato/iTerm2-Color-Schemes/blob/master/schemes/Solarized%20Dark%20Higher%20Contrast.itermcolors

你可能感兴趣的:(工具使用,quick,note)