1
0

zpreztorc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. #
  23. # Editor
  24. #
  25. # Set the key mapping style to 'emacs' or 'vi'.
  26. zstyle ':prezto:module:editor' key-bindings 'emacs'
  27. # Auto convert .... to ../..
  28. zstyle ':prezto:module:editor' dot-expansion 'yes'
  29. #
  30. # Prompt
  31. #
  32. # Set the prompt theme to load.
  33. # Setting it to 'random' loads a random theme.
  34. # Auto set to 'off' on dumb terminals.
  35. zstyle ':prezto:module:prompt' theme 'agnoster'
  36. #
  37. # Syntax Highlighting
  38. #
  39. # Set syntax highlighters.
  40. # By default, only the main highlighter is enabled.
  41. zstyle ':prezto:module:syntax-highlighting' highlighters \
  42. 'main' \
  43. 'brackets' \
  44. 'pattern' \
  45. 'cursor' \
  46. 'root'