zsh + prezto를 사용해보기
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에서 환경 변수 등 필요한 설정을 가져오는 것도 잊지 마세요.
Reference
이 문제에 관하여(zsh + prezto를 사용해보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/TatchNicolas/items/46846bce65649579fc37텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)