가독성 좋은 테마인 solarized 를 설정하는 방법

vim


Vundle 플러그인 매니저 설치후 .vimrc 에 아래 내용 추가하고 재구동


Plugin 'altercation/vim-colors-solarized'
 
 
syntax enable
set background=dark
colorscheme solarized
VIM

light 테마를 사용할 경우 set background=light 로 설정


SecureCRT

최고의 Windows 용 터미널 에뮬레이터인 Secure CRT 에 적용하는 방법

  1. 전역 설정 파일인 %appdata%\VanDyke\Config\Global.ini 를 에디터로 로딩
  2. B:”ANSI Color RGB”  부분 찾은 후에 아래 내용으로 변경

    B:”ANSI Color RGB”=00000040
    00 2b 38 00 dc 32 2f 00 85 99 00 00 b5 89 00 00 26 8b d2 00 d3 36 82 00 2a a1 98 00 ee e8 d5 00
    07 36 42 00 cb 4b 16 00 58 6e 75 00 65 7b 83 00 83 94 96 00 6c 71 c4 00 93 a1 a1 00 fd f6 e3 00
    CODE

iTerm2

iTerm2 + oh my zsh + solaried theme - https://gist.github.com/kevin-smets/8568070

  1. iTerm2 설치

    brew cask install iterm2
    CODE
  2. Solarized theme 다운로드
  3. iterm 구동
  4. Preferences → Profiles → Colors → Color Presets → Import 선택
     


Solaized dircolors

ls 명령시 출력 결과에 solarized theme 적용하기


  1. download

    wget https://raw.githubusercontent.com/seebi/dircolors-solarized/master/dircolors.256dark -O ~/.dircolors
    CODE
  2. 반영

    eval `dircolors .dircolors`
    CODE

IntelliJ


  1. https://github.com/jkaving/intellij-colors-solarized 에서 settings.jar 다운로드
  2. 인텔리J 의 File → *Import Settings* 메뉴 선택후 다운받은 settings.jar 을 선택하고 컴포넌트에서 Editor Colors 를 선택하고 Ok 클릭.

  3. IntelliJ IDEA 재시작

  4. Preferences(또는 Settings) → Editor → Colors & Fonts 를 선택한 후에 테마를 선택하고 Ok 클릭


Visual Studio


  1. https://github.com/leddt/visualstudio-colors-solarized 에 연결하여 사용하는 버전에 맞는 테마 다운로드
  2. Tools -> Import and Export Settings...

  3. Select "Import selected environment settings"

  4. Backup if desired.

  5. Click "Browse".

  6. Select the vssettings file you downloaded.

  7. Click "Next".

  8. Done.


Sublime Text 3

  1. Package control 설치(Sublime Text 3 설치 및 설정 참고)
  2. Tools->Command Pallet 또는 (Ctrl-Shift-P) 를 클릭
  3. 명령창에서 Install Package  클릭
  4. Solarized Color Scheme 패키지 설치

  5. Preference → Color theme 에서 Solarized 테마를 선택


Windows cmd

Microsoft 의 console 프로젝트 사용 권장

  1. https://github.com/Microsoft/console/releases 에서 마지막 릴리스 다운로드
  2. 압축 해제
  3. colortool 을 테마 이름을 옵션으로 주어서 실행

    ColorTool.exe solarized_dark
    CODE


Cmder