01_prezto.zsh 590 B

123456789101112131415161718192021222324
  1. #
  2. # Prezto options
  3. #
  4. # Set case-sensitivity for completion, history lookup, etc.
  5. zstyle ':prezto:*:*' case-sensitive 'no'
  6. # Color output (auto set to 'no' on dumb terminals).
  7. zstyle ':prezto:*:*' color 'yes'
  8. # Set syntax highlighters. By default, only the main highlighter is enabled.
  9. zstyle ':prezto:module:syntax-highlighting' highlighters \
  10. 'main' \
  11. 'brackets' \
  12. 'pattern' \
  13. 'cursor'
  14. # Auto set the tab and window titles.
  15. zstyle ':prezto:module:terminal' auto-title 'yes'
  16. # debi alias conflicts debi provided by devscripts
  17. if (( $+aliases[debi] )); then
  18. unalias debi
  19. fi