iterm2配色方案

tartyphoenix發表於2016-04-15

配色來源

  • iterm2官網所提供的配色方案iTerm2-Color-Schemes

    在schemes目錄下提供了很多種配色方案
    
  • altercation大神的solarized配色方案solarized

    在這個repo中給出了多個編輯器的配色方案,顯然我們需要的是目錄
    iterm2-colors-solarized下的
    
    Solarized Dark.itermcolors 和 
    Solarized Light.itermcolors
        

HOW

  • clone上面的repo

  • 進入iterm2,然後⌘commmand + i

    • 進入colors標籤,Load Preset;然後點選import匯入上面所說的配色方案即可

    • 進入text標籤,不勾選Draw bold text in bright colors選項

  • 配置.bash_profile

    • vim $HOME/.bash_profile,新增下列程式碼

        CLICOLOR=1
        LSCOLORS=gxfxcxdxegedabagacad
        export PS1=`[ 33[01;32m]u@h[ 33[00m]:[ 33[01;36m]w[ 33[00m]$`
        export TERM=xterm-color
    • source $HOME/.bash_profile ,使得上述配置生效

  • 重啟iterm2即可

相關文章