zsh + prezto를 사용해보기

1969 단어 PreztoZsh
특히 공식 절차와 아무런 변화가 없지만 한 곳에서만 막혔으므로 메모

zsh 설치
sudo apt install -y zsh

zsh의 경로 확인 (나중에 사용)
which zsh

제 경우에는 /usr/bin/zsh
zsh 시작
zsh

※ 다음과 같은 메시지가 표시되는 경우는 「q」를 선택한다. 여기서 자동으로 .zshrc라든지를 만들어 버리면, 나중의 순서로 File already exsists 라고 화난다.
This is the Z Shell configuration function for new users,
zsh-newuser-install.
You are seeing this message because you have no zsh startup files
(the files .zshenv, .zprofile, .zshrc, .zlogin in the directory
~).  This function can help you with a few settings that should
make your use of the shell easier.

You can:

(q)  Quit and do nothing.  The function will be run again next time.

(0)  Exit, creating the file ~/.zshrc containing just a comment.
     That will prevent this function being run again.

(1)  Continue to the main menu.

(2)  Populate your ~/.zshrc with the configuration recommended
     by the system administrator and exit (you will need to edit
     the file by hand, if so desired).

--- Type one of the keys in parentheses ---

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

기본 쉘 변경 (비밀번호를 듣습니다)
chsh -s /usr/bin/zsh

다시 로그인하면 전환됩니다.



나머지는 원하는 테마를 넣거나 사용자 정의하십시오.
.bashrc에서 환경 변수 등 필요한 설정을 가져오는 것도 잊지 마세요.

좋은 웹페이지 즐겨찾기