Guest User

Untitled

a guest
May 26th, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. #
  2. # Sets Prezto options.
  3. #
  4. # Authors:
  5. # Sorin Ionescu <sorin.ionescu@gmail.com>
  6. #
  7.  
  8. #
  9. # General
  10. #
  11.  
  12. # Set case-sensitivity for completion, history lookup, etc.
  13. # zstyle ':prezto:*:*' case-sensitive 'yes'
  14.  
  15. # Color output (auto set to 'no' on dumb terminals).
  16. zstyle ':prezto:*:*' color 'yes'
  17.  
  18. # Set the Zsh modules to load (man zshmodules).
  19. # zstyle ':prezto:load' zmodule 'attr' 'stat'
  20.  
  21. # Set the Zsh functions to load (man zshcontrib).
  22. # zstyle ':prezto:load' zfunction 'zargs' 'zmv'
  23.  
  24. # Set the Prezto modules to load (browse modules).
  25. # The order matters.
  26. zstyle ':prezto:load' pmodule \
  27. 'environment' \
  28. 'terminal' \
  29. 'editor' \
  30. 'history' \
  31. 'directory' \
  32. 'spectrum' \
  33. 'utility' \
  34. 'syntax-highlighting' \
  35. 'history-substring-search' \
  36. 'autosuggestions' \
  37. 'completion' \
  38. 'fasd' \
  39. 'git' \
  40. 'prompt'
  41.  
  42. #
  43. # Autosuggestions
  44. #
  45.  
  46. # Set the query found color.
  47. # zstyle ':prezto:module:autosuggestions:color' found ''
  48.  
  49. #
  50. # Editor
  51. #
  52.  
  53. # Set the key mapping style to 'emacs' or 'vi'.
  54. zstyle ':prezto:module:editor' key-bindings 'vi'
  55.  
  56. # Auto convert .... to ../..
  57. # zstyle ':prezto:module:editor' dot-expansion 'yes'
  58.  
  59. #
  60. # Git
  61. #
  62.  
  63. # Ignore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
  64. # zstyle ':prezto:module:git:status:ignore' submodules 'all'
  65.  
  66. #
  67. # GNU Utility
  68. #
  69.  
  70. # Set the command prefix on non-GNU systems.
  71. # zstyle ':prezto:module:gnu-utility' prefix 'g'
  72.  
  73. #
  74. # History Substring Search
  75. #
  76.  
  77. # Set the query found color.
  78. # zstyle ':prezto:module:history-substring-search:color' found ''
  79.  
  80. # Set the query not found color.
  81. # zstyle ':prezto:module:history-substring-search:color' not-found ''
  82.  
  83. # Set the search globbing flags.
  84. # zstyle ':prezto:module:history-substring-search' globbing-flags ''
  85.  
  86. #
  87. # Pacman
  88. #
  89.  
  90. # Set the Pacman frontend.
  91. # zstyle ':prezto:module:pacman' frontend 'yaourt'
  92.  
  93. #
  94. # Prompt
  95. #
  96.  
  97. # Set the prompt theme to load.
  98. # Setting it to 'random' loads a random theme.
  99. # Auto set to 'off' on dumb terminals.
  100. zstyle ':prezto:module:prompt' theme 'smiley'
  101. # zstyle ':prezto:module:prompt' theme 'sorin'
  102.  
  103. #
  104. # Ruby
  105. #
  106.  
  107. # Auto switch the Ruby version on directory change.
  108. # zstyle ':prezto:module:ruby:chruby' auto-switch 'yes'
  109.  
  110. #
  111. # Screen
  112. #
  113.  
  114. # Auto start a session when Zsh is launched in a local terminal.
  115. # zstyle ':prezto:module:screen:auto-start' local 'yes'
  116.  
  117. # Auto start a session when Zsh is launched in a SSH connection.
  118. # zstyle ':prezto:module:screen:auto-start' remote 'yes'
  119.  
  120. #
  121. # SSH
  122. #
  123.  
  124. # Set the SSH identities to load into the agent.
  125. # zstyle ':prezto:module:ssh:load' identities 'id_rsa' 'id_rsa2' 'id_github'
  126.  
  127. #
  128. # Syntax Highlighting
  129. #
  130.  
  131. # Set syntax highlighters.
  132. # By default, only the main highlighter is enabled.
  133. # zstyle ':prezto:module:syntax-highlighting' highlighters \
  134. # 'main' \
  135. # 'brackets' \
  136. # 'pattern' \
  137. # 'line' \
  138. # 'cursor' \
  139. # 'root'
  140. #
  141. # Set syntax highlighting styles.
  142. # zstyle ':prezto:module:syntax-highlighting' styles \
  143. # 'builtin' 'bg=blue' \
  144. # 'command' 'bg=blue' \
  145. # 'function' 'bg=blue'
  146.  
  147. #
  148. # Terminal
  149. #
  150.  
  151. # Auto set the tab and window titles.
  152. # zstyle ':prezto:module:terminal' auto-title 'yes'
  153.  
  154. # Set the window title format.
  155. # zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
  156.  
  157. # Set the tab title format.
  158. # zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
  159.  
  160. #
  161. # Tmux
  162. #
  163.  
  164. # Auto start a session when Zsh is launched in a local terminal.
  165. # zstyle ':prezto:module:tmux:auto-start' local 'yes'
  166.  
  167. # Auto start a session when Zsh is launched in a SSH connection.
  168. # zstyle ':prezto:module:tmux:auto-start' remote 'yes'
  169.  
  170. # Integrate with iTerm2.
  171. # zstyle ':prezto:module:tmux:iterm' integrate 'yes'
Add Comment
Please, Sign In to add comment