내 .zshrc에 다음을 넣었습니다.
autoload -Uz compinit promptinit
compinit
promptinit
이것은 또한 주어진다https://wiki.archlinux.org/index.php/Zsh#Prompt_themes
주제 사이를 반복할 수 있지만 각 주제에 대한 코드를 읽으려면 주제가 실제로 어디에 있는지 알고 싶습니다.
답변1
함수 호출 후 함수의 코드를 검사하여 promptinit
실행되는 내용을 확인합니다.
% which promptinit | grep path
local ppath='' name theme
for theme in $^fpath/prompt_*_setup(N)
% print -l $^fpath/prompt_*_setup(N)
/usr/share/zsh/5.0.8/functions/prompt_adam1_setup
...