Prezto에서 자동 완성을 활성화하고 색상을 변경하는 방법

2538 단어 PreztoZsh
Zsh의 자동 완성 플러그인 zsh-autosuggestions이 편리하고 사용하고 싶었습니다.
나는 Prezto을 사용하고 있기 때문에, 조사하면 autosuggestions라는 모듈이 처음부터 있었기 때문에 그쪽을 사용하기로 결정했습니다.

자동 완성 사용



autosuggestions를 사용하려면 .zpreztorc 모듈을 설정한 위치에 한 줄만 추가하면 됩니다.

.zpreztorc
# Set the Prezto modules to load (browse modules).
# The order matters.
zstyle ':prezto:load' pmodule \
  'environment' \
  'terminal' \
  'editor' \
  'history' \
  'directory' \
  'spectrum' \
  'utility' \
  'completion' \
  'prompt' \
  'autosuggestions'
# ↑これ!

이제 입력이 보완됩니다.


보완된 부분의 색상 변경



이것 뿐이라고 보완된 부분이 입력한 부분과 같은 색으로 알기 어려우므로 바꾸고 싶습니다.
이 설정의 방법이 이해하기 어려웠습니다.
.zpreztorc 에 이하의 코멘트가 있으므로, 코멘트를 제외하면 어떠한 색이 될까라고 생각했습니다만 바뀌지 않았습니다.

.zpreztorc
# Set the query found color.
# zstyle ':prezto:module:autosuggestions:color' found ''

zstyle 의 설정의 방법도 조사해 보았습니다만 잘 모른다…….
다른 설정을 읽고 알았습니다만, '' 의 부분에 이하와 같이 색을 설정하면 좋을 것 같습니다.

.zpreztorc
# Set the query found color.
zstyle ':prezto:module:autosuggestions:color' found 'fg=white'

이제 보완된 부분이 흰색 문자가 되었습니다.

좋은 웹페이지 즐겨찾기