22.04.06 기준 Intel, M1 동일함
설치에 앞서서 다음 세팅이 준비되어야 합니다
설치가 안되어 있다면 아래 링크를 통해 설치해주세요
2022.04.06 - [Dev/Basic] - Mac 환경 세팅 (Iterm2 + HomeBrew)
1. Oh-My-Zsh 설치
# curl 사용 설치 시
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# wget 사용 설치 시
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# [oh-my-zsh] Insecure completion-dependent directories detected 발생시
# vim ~/.zshrc 한 후 다음 라인을 찾아 수정하거나 추가한다
ZSH_DISABLE_COMPFIX=”true”
2. Zplug 설치
brew install zplug
vim ~/.zplug_settings
# ~/.zplug_settings 에 다음 추가
export ZPLUG_HOME=/opt/homebrew/opt/zplug
source $ZPLUG_HOME/init.zsh
zplug "zsh-users/zsh-completions", defer:0
zplug "zsh-users/zsh-autosuggestions", defer:1, on:"zsh-users/zsh-completions"
zplug "zsh-users/zsh-syntax-highlighting", defer:1, on:"zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-history-substring-search", defer:2, on:"zsh-users/zsh-syntax-highlighting"
# Plugins
zplug "lib/completion", from:oh-my-zsh
zplug "lib/key-bindings", from:oh-my-zsh
zplug "lib/directories", from:oh-my-zsh
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/zsh_reload", from:oh-my-zsh
zplug "plugins/colorize", from:oh-my-zsh
# theme
zplug romkatv/powerlevel10k, as:theme, depth:1
# install & load
zplug check || zplug install
# Then, source plugins and add commands to $PATH
zplug load
# zplug 설치 후 재시작하면 플러그인 설치되면서 자동으로 세팅됨
# p10K 테마의 경우 세팅 화면이 나와서 개인 취향에 맞게 설정하면 된다
# 실수로 잘못 설정하면 다음 명령어로 다시 재설정
pk10k configure
# 추가로 powerlevel10K 관련 에러 발생의 경우
# vim ~/.p10k.zsh 한 후 다음 내용을 찾아 변경한다
typeset -g POWERLEVEL9K_INSTANT_PROMPT=verbose
# verbose를 quiete 또는 off 로 변경
'Dev > 환경세팅' 카테고리의 다른 글
[Mac] Python 설치 (asdf) (0) | 2022.05.15 |
---|---|
[Mac] Java 설치 (asdf) (0) | 2022.05.15 |
[Mac] asdf 설치 (Homebrew) (0) | 2022.05.15 |
[Mac] Java OpenJDK 8, 11 설치 (Jenv) (0) | 2022.05.15 |
[Mac] Iterm2 + HomeBrew 설치 (0) | 2022.04.30 |