목차 ```~/.oh-my-zsh/themes/agnoster.zsh-theme`` 파일 열기(vim) prompt_dir(), prompt_context() 변경하기. 전체 경로를 현재 위치만으로 설정하기 ~/Documents/testFile -> testFile 기존에 있는 텍스트 파일을 # Dir: current working directory prompt_dir() { prompt_segment blue black '%~' }아래와 같이 수정. prompt_dir() { prompt_segment blue $CURRENT_FG '%c' }그럼 현재 위치한 경로만 볼 수 있습니다. 만일 현재 경로가 궁금하시면 pwd 커맨드로 확인 하실 수 있습니다. UserName 부분..