Search
Duplicate
📍

Oh-my-zsh 삽질

생성일
2022/05/15 23:19
태그
개발환경

커스터마이징

~/.oh-my-zsh/themes/agnoster.zsh-theme 에 디폴트 설정이 있다.
수정하고싶은 내용을 .zshrc에 붙여넣어도 적용된다.
export TERM=xterm-256color prompt_context() { if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then prompt_segment blue default "%(!.%{%F{yellow}%}.)%n" #prompt_segment 39 default "%(!.%{%F{yellow}%}.)%n" fi } prompt_dir() { prompt_segment 39 $CURRENT_FG '%~' }
Bash
복사

플러그인

plugins=( git zsh-syntax-highlighting zsh-autosuggestions )
Bash
복사