zpreztorc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #
  2. # Sets Prezto options.
  3. #
  4. # Authors:
  5. # Sorin Ionescu <sorin.ionescu@gmail.com>
  6. #
  7. #
  8. # General
  9. #
  10. # Set case-sensitivity for completion, history lookup, etc.
  11. # zstyle ':prezto:*:*' case-sensitive 'yes'
  12. # Color output (auto set to 'no' on dumb terminals).
  13. zstyle ':prezto:*:*' color 'yes'
  14. # Set the Zsh modules to load (man zshmodules).
  15. # zstyle ':prezto:load' zmodule 'attr' 'stat'
  16. # Set the Zsh functions to load (man zshcontrib).
  17. # zstyle ':prezto:load' zfunction 'zargs' 'zmv'
  18. # Set the Prezto modules to load (browse modules).
  19. # The order matters.
  20. zstyle ':prezto:load' pmodule \
  21. 'environment' \
  22. 'terminal' \
  23. 'editor' \
  24. 'history' \
  25. 'directory' \
  26. 'spectrum' \
  27. 'utility' \
  28. 'completion' \
  29. 'prompt'
  30. #
  31. # Editor
  32. #
  33. # Set the key mapping style to 'emacs' or 'vi'.
  34. zstyle ':prezto:module:editor' key-bindings 'emacs'
  35. # Auto convert .... to ../..
  36. # zstyle ':prezto:module:editor' dot-expansion 'yes'
  37. #
  38. # Git
  39. #
  40. # Ignore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
  41. # zstyle ':prezto:module:git:status:ignore' submodules 'all'
  42. #
  43. # GNU Utility
  44. #
  45. # Set the command prefix on non-GNU systems.
  46. # zstyle ':prezto:module:gnu-utility' prefix 'g'
  47. #
  48. # History Substring Search
  49. #
  50. # Set the query found color.
  51. # zstyle ':prezto:module:history-substring-search:color' found ''
  52. # Set the query not found color.
  53. # zstyle ':prezto:module:history-substring-search:color' not-found ''
  54. # Set the search globbing flags.
  55. # zstyle ':prezto:module:history-substring-search' globbing-flags ''
  56. #
  57. # Pacman
  58. #
  59. # Set the Pacman frontend.
  60. # zstyle ':prezto:module:pacman' frontend 'yaourt'
  61. #
  62. # Prompt
  63. #
  64. # Set the prompt theme to load.
  65. # Setting it to 'random' loads a random theme.
  66. # Auto set to 'off' on dumb terminals.
  67. zstyle ':prezto:module:prompt' theme 'steeef'
  68. #
  69. # Ruby
  70. #
  71. # Auto switch the Ruby version on directory change.
  72. # zstyle ':prezto:module:ruby:chruby' auto-switch 'yes'
  73. #
  74. # Screen
  75. #
  76. # Auto start a session when Zsh is launched in a local terminal.
  77. # zstyle ':prezto:module:screen:auto-start' local 'yes'
  78. # Auto start a session when Zsh is launched in a SSH connection.
  79. # zstyle ':prezto:module:screen:auto-start' remote 'yes'
  80. #
  81. # SSH
  82. #
  83. # Set the SSH identities to load into the agent.
  84. # zstyle ':prezto:module:ssh:load' identities 'id_rsa' 'id_rsa2' 'id_github'
  85. #
  86. # Syntax Highlighting
  87. #
  88. # Set syntax highlighters.
  89. # By default, only the main highlighter is enabled.
  90. # zstyle ':prezto:module:syntax-highlighting' highlighters \
  91. # 'main' \
  92. # 'brackets' \
  93. # 'pattern' \
  94. # 'cursor' \
  95. # 'root'
  96. #
  97. # Set syntax highlighting styles.
  98. # zstyle ':prezto:module:syntax-highlighting' styles \
  99. # 'builtin' 'bg=blue' \
  100. # 'command' 'bg=blue' \
  101. # 'function' 'bg=blue'
  102. #
  103. # Terminal
  104. #
  105. # Auto set the tab and window titles.
  106. # zstyle ':prezto:module:terminal' auto-title 'yes'
  107. # Set the window title format.
  108. # zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
  109. # Set the tab title format.
  110. # zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
  111. #
  112. # Tmux
  113. #
  114. # Auto start a session when Zsh is launched in a local terminal.
  115. # zstyle ':prezto:module:tmux:auto-start' local 'yes'
  116. # Auto start a session when Zsh is launched in a SSH connection.
  117. # zstyle ':prezto:module:tmux:auto-start' remote 'yes'