본문 바로가기
IT 관련/IT Application

oh-my-zsh 테마, iterm2 및 vim 셋팅

by 타이호 2021. 9. 5.
반응형

맥북에 oh-my-zsh를 설치하고 이런 저런 테마를 적용하여 보던 중 괜찮은 테마와 iterm의 칼라 프리셋, 그리고 vim에서 자주 쓰는 설정들을 정리해본다

1. oh-my-zsh 테마

많은 테마들을 모아둔 github는 아래 링크에서 볼 수 있다

https://github.com/ohmyzsh/ohmyzsh/wiki/External-themes

 

GitHub - ohmyzsh/ohmyzsh: 🙃 A delightful community-driven (with 1800+ contributors) framework for managing your zsh configu

🙃 A delightful community-driven (with 1800+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, OSX, hub, docker, homebrew, node, php, python,...

github.com

일본어가 있지만.. 이 테마가 좀 괜찮아서 적용해보았고

https://github.com/Daivasmara/daivasmara.zsh-theme

 

GitHub - Daivasmara/daivasmara.zsh-theme: Chill zsh-theme, personal take on smt

Chill zsh-theme, personal take on smt. Contribute to Daivasmara/daivasmara.zsh-theme development by creating an account on GitHub.

github.com

그리고 현재 사용중인 테마는 dracula이다

https://draculatheme.com/zsh

 

Dark theme for Zsh and 204+ apps — Dracula

Dracula is a color scheme for code editors and terminal emulators, including Zsh and 204+ other apps. Check the instructions to learn how to install it.

draculatheme.com

 

2. iterm2 Color preset

어두운 화면을 좋아하기에 현재는 이 칼라 프리셋에 정착중이다

https://github.com/hwyncho/ayu-iTerm

 

GitHub - hwyncho/ayu-iTerm: ayu color themes for iTerm

ayu color themes for iTerm. Contribute to hwyncho/ayu-iTerm development by creating an account on GitHub.

github.com

 

3. vim 셋팅

vi를 많이 사용하다 보니 자주 쓰이는 설정은 ~/.vimrc 에 만들어두고 사용하면 편리하다

set hlsearch
set autoindent
set cindent
set ts=2
set mouse=
set paste
syntax on

set hlsearch : 검색어 하이라이트
set autoindent  : 자동으로 들여쓰기
set cindent : 자동으로 들여쓰기
set ts=2 : tab은 2칸으로 설정
syntax on : syntax가 있는 부분 하이라이트

반응형