zsh prezto 사용하기

# zsh 에 oh-my-zsh 와 더블어 많이 사용하는 prezto 를 사용해보자.
# zsh 을 실행하고 prezto 를 다운받기
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"

# 다음 스크립트를 복붙하여 실행
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done

# .zshrc 에 설정
vi ~/.zshrc
source ~/.zprezto/init.zsh

# zstyle 수정
vi ~/.zpreztorc
zstyle ':prezto:load' pmodule \
'environment' \
'terminal' \
'editor' \
'history' \
'directory' \
'spectrum' \
'utility' \
'completion' \
'prompt' \
'git' \
'syntax-highlighting' \
'history-substring-search' \

# iterm2 (night lion v2) +sh + prezto 사용화면


# 참고
https://github.com/sorin-ionescu/prezto
http://jeromedalbert.com/migrate-from-oh-my-zsh-to-prezto/
http://wikimatze.de/better-zsh-with-prezto

comments:

댓글 쓰기