Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 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. 'completion' \
  35. 'prompt' \
  36. 'git' \
  37. 'history-substring-search'
  38.  
  39. #
  40. # Editor
  41. #
  42.  
  43. # Set the key mapping style to 'emacs' or 'vi'.
  44. zstyle ':prezto:module:editor' key-bindings 'emacs'
  45.  
  46. # Auto convert .... to ../..
  47. # zstyle ':prezto:module:editor' dot-expansion 'yes'
  48.  
  49. #
  50. # Git
  51. #
  52.  
  53. # Ignore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
  54. # zstyle ':prezto:module:git:status:ignore' submodules 'all'
  55.  
  56. #
  57. # GNU Utility
  58. #
  59.  
  60. # Set the command prefix on non-GNU systems.
  61. # zstyle ':prezto:module:gnu-utility' prefix 'g'
  62.  
  63. #
  64. # History Substring Search
  65. #
  66.  
  67. # Set the query found color.
  68. # zstyle ':prezto:module:history-substring-search:color' found ''
  69.  
  70. # Set the query not found color.
  71. # zstyle ':prezto:module:history-substring-search:color' not-found ''
  72.  
  73. # Set the search globbing flags.
  74. # zstyle ':prezto:module:history-substring-search' globbing-flags ''
  75.  
  76. #
  77. # Pacman
  78. #
  79.  
  80. # Set the Pacman frontend.
  81. # zstyle ':prezto:module:pacman' frontend 'yaourt'
  82.  
  83. #
  84. # Prompt
  85. #
  86.  
  87. # Set the prompt theme to load.
  88. # Setting it to 'random' loads a random theme.
  89. # Auto set to 'off' on dumb terminals.
  90. zstyle ':prezto:module:prompt' theme 'sorin'
  91.  
  92. #
  93. # Ruby
  94. #
  95.  
  96. # Auto switch the Ruby version on directory change.
  97. # zstyle ':prezto:module:ruby:chruby' auto-switch 'yes'
  98.  
  99. #
  100. # Screen
  101. #
  102.  
  103. # Auto start a session when Zsh is launched in a local terminal.
  104. # zstyle ':prezto:module:screen:auto-start' local 'yes'
  105.  
  106. # Auto start a session when Zsh is launched in a SSH connection.
  107. # zstyle ':prezto:module:screen:auto-start' remote 'yes'
  108.  
  109. #
  110. # SSH
  111. #
  112.  
  113. # Set the SSH identities to load into the agent.
  114. # zstyle ':prezto:module:ssh:load' identities 'id_rsa' 'id_rsa2' 'id_github'
  115.  
  116. #
  117. # Syntax Highlighting
  118. #
  119.  
  120. # Set syntax highlighters.
  121. # By default, only the main highlighter is enabled.
  122. # zstyle ':prezto:module:syntax-highlighting' highlighters \
  123. # 'main' \
  124. # 'brackets' \
  125. # 'pattern' \
  126. # 'cursor' \
  127. # 'root'
  128. #
  129. # Set syntax highlighting styles.
  130. # zstyle ':prezto:module:syntax-highlighting' styles \
  131. # 'builtin' 'bg=blue' \
  132. # 'command' 'bg=blue' \
  133. # 'function' 'bg=blue'
  134.  
  135. #
  136. # Terminal
  137. #
  138.  
  139. # Auto set the tab and window titles.
  140. # zstyle ':prezto:module:terminal' auto-title 'yes'
  141.  
  142. # Set the window title format.
  143. # zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
  144.  
  145. # Set the tab title format.
  146. # zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
  147.  
  148. #
  149. # Tmux
  150. #
  151.  
  152. # Auto start a session when Zsh is launched in a local terminal.
  153. # zstyle ':prezto:module:tmux:auto-start' local 'yes'
  154.  
  155. # Auto start a session when Zsh is launched in a SSH connection.
  156. # zstyle ':prezto:module:tmux:auto-start' remote 'yes'
  157.  
  158. # Integrate with iTerm2.
  159. # zstyle ':prezto:module:tmux:iterm' integrate 'yes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement