1
0

zpreztorc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Color output (auto set to 'no' on dumb terminals).
  2. zstyle ':prezto:*:*' color 'yes'
  3. # Set the Zsh modules to load (man zshmodules).
  4. # zstyle ':prezto:load' zmodule 'attr' 'stat'
  5. # Set the Zsh functions to load (man zshcontrib).
  6. # zstyle ':prezto:load' zfunction 'zargs' 'zmv'
  7. # Set the Prezto modules to load (browse modules).
  8. # The order matters.
  9. zstyle ':prezto:load' pmodule \
  10. 'environment' \
  11. 'terminal' \
  12. 'editor' \
  13. 'history' \
  14. 'directory' \
  15. 'spectrum' \
  16. 'utility' \
  17. 'completion' \
  18. 'prompt' \
  19. 'git' \
  20. 'syntax-highlighting' \
  21. 'history-substring-search' \
  22. 'archive'
  23. #
  24. # Editor
  25. #
  26. # Set the key mapping style to 'emacs' or 'vi'.
  27. zstyle ':prezto:module:editor' key-bindings 'emacs'
  28. # Auto convert .... to ../..
  29. zstyle ':prezto:module:editor' dot-expansion 'yes'
  30. #
  31. # Prompt
  32. #
  33. # Set the prompt theme to load.
  34. # Setting it to 'random' loads a random theme.
  35. # Auto set to 'off' on dumb terminals.
  36. zstyle ':prezto:module:prompt' theme 'agnoster'
  37. #
  38. # Syntax Highlighting
  39. #
  40. # Set syntax highlighters.
  41. # By default, only the main highlighter is enabled.
  42. zstyle ':prezto:module:syntax-highlighting' highlighters \
  43. 'main' \
  44. 'brackets' \
  45. 'pattern' \
  46. 'cursor' \
  47. 'root'