이 최소 .zshrc를 고려하십시오.
export CLICOLOR=1;
export LSCOLORS=exfxcxdxbxegedabagacad; # It is the default value on OSX, so this line can be omitted
autoload -Uz compinit
compinit
zstyle ':completion:*' list-colors 'exfxcxdxbxegedabagacad'
OS X에서 TRUE로 설정되어 있고 ls
사용 된 색상 이 기본값 인 CLICOLOR
경우 색상을 사용 합니다.LSCOLORS
exfxcxdxbxegedabagacad
를 수행하면 ls
디렉토리가 파란색으로 인쇄됩니다. cd + TAB
그러나을 수행 할 때 ZSH는 디렉토리가 빨간색과 굵은 체로 완성되도록 제안합니다. 문제는 무엇이며 어떻게 ZSH 완료와 같은 색상을 사용할 수 ls
있습니까?