Mac终端配置指南

安装

  • iTerm2:https://www.iterm2.com/

    • 默认使用zsh终端
    chsh -s /bin/zsh
    
  • Oh my zsh

    # curl 安装方式
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    
  • PowerLine

    // 安装powerline
    pip install powerline-status --user
    
    // 如果提示没有安装pip 先安装pip
    sudo easy_install pip
    
  • PowerFonts

    // 使用HTTPS下载有可能会失败
    git clone [email protected]:powerline/fonts.git
    
    // 进入仓库文件夹,执行脚本
    ./install.sh
    
  • color-schemes

    // download
    https://iterm2colorschemes.com/
    

搭配

主题

使用

  • 导入外部主题

    //显示隐藏文件
    defaults write com.apple.finder AppleShowAllFiles -bool true
    //不显示隐藏文件
    defaults write com.apple.finder AppleShowAllFiles -bool false
    
    // 快捷键
    Command + Shift + .
    
    • 根目录-->.oh-my-zsh(macOS系统会自动隐藏'.'开头的文件)-->themes-->将想要的'-theme'文件粘贴到这个文件夹
  • 选择主题

    • 根目录-->.zshrc
    # Set name of the theme to load --- if set to "random", it will
    # load a random theme each time oh-my-zsh is loaded, in which case,
    # to know which specific one was loaded, run: echo $RANDOM_THEME
    # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
    ZSH_THEME="xxxx"
    # 把"xxxx"替换成想要的主题
    

挑选

  • zsh打包自带主题
  • 需要自己手动下载的外部主题

配色

使用

  • iTerm2-->Perferences-->Profiles-->Colors-->Color Presets
    • 选择需要的颜色主题
    • 点击Import引入外部颜色主题

挑选

  • Iterm2-color-schemes

成果

Mac终端配置指南_第1张图片
image-20201105204420976
  • 字体:ubuntu mono derivative powerline bold 26
  • 配色:IC_Green_PPL
  • 主题:Spaceship ZSH(外部主题)
  • 插件:plugins=(git autojump extract rand-quote zsh-syntax-highlighting)

参考文章

  • iTerm2 + Oh My Zsh 打造舒适终端体验

  • 让你的iTerm更Geek!:https://www.jianshu.com/p/a0249778872e

  • 常用的oh-my-zsh插件 https://zhuanlan.zhihu.com/p/61447507

  • mac上使用oh my zsh有哪些必备的插件推荐? https://www.zhihu.com/question/49284484

  • zsh oh-my-zsh 插件推荐 https://juejin.im/entry/6844903598300610568

  • Customizing the OS X Terminal https://medium.com/@Jarvski/customizing-the-os-x-terminal-11fda5c3dd5c

  • iTerm2 都不会用,还敢自称老司机?(上)

你可能感兴趣的:(Mac终端配置指南)