Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.15 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. # Add additional directories to load prezto modules from
  19. # zstyle ':prezto:load' pmodule-dirs $HOME/.zprezto-contrib
  20.  
  21. # Set the Zsh modules to load (man zshmodules).
  22. # zstyle ':prezto:load' zmodule 'attr' 'stat'
  23.  
  24. # Set the Zsh functions to load (man zshcontrib).
  25. # zstyle ':prezto:load' zfunction 'zargs' 'zmv'
  26.  
  27. # Set the Prezto modules to load (browse modules).
  28. # The order matters.
  29. zstyle ':prezto:load' pmodule \
  30. 'environment' \
  31. 'terminal' \
  32. 'editor' \
  33. 'history' \
  34. 'git' \
  35. 'directory' \
  36. 'spectrum' \
  37. 'utility' \
  38. 'completion' \
  39. 'syntax-highlighting' \
  40. 'history-substring-search' \
  41. 'autosuggestions' \
  42. 'prompt'
  43.  
  44. #
  45. # Autosuggestions
  46. #
  47.  
  48. # Set the query found color.
  49. # zstyle ':prezto:module:autosuggestions:color' found ''
  50.  
  51. #
  52. # Completions
  53. #
  54.  
  55. # Set the entries to ignore in static */etc/hosts* for host completion.
  56. # zstyle ':prezto:module:completion:*:hosts' etc-host-ignores \
  57. # '0.0.0.0' '127.0.0.1'
  58.  
  59. #
  60. # Editor
  61. #
  62.  
  63. # Set the key mapping style to 'emacs' or 'vi'.
  64. zstyle ':prezto:module:editor' key-bindings 'emacs'
  65.  
  66. # Auto convert .... to ../..
  67. # zstyle ':prezto:module:editor' dot-expansion 'yes'
  68.  
  69. #
  70. # Git
  71. #
  72.  
  73.  
  74. # Ignore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
  75. # zstyle ':prezto:module:git:status:ignore' submodules 'all'
  76.  
  77. #
  78. # GNU Utility
  79. #
  80.  
  81. # Set the command prefix on non-GNU systems.
  82. # zstyle ':prezto:module:gnu-utility' prefix 'g'
  83.  
  84. #
  85. # History Substring Search
  86. #
  87.  
  88. # Set the query found color.
  89. # zstyle ':prezto:module:history-substring-search:color' found ''
  90.  
  91. # Set the query not found color.
  92. # zstyle ':prezto:module:history-substring-search:color' not-found ''
  93.  
  94. # Set the search globbing flags.
  95. # zstyle ':prezto:module:history-substring-search' globbing-flags ''
  96.  
  97. #
  98. # OS X
  99. #
  100.  
  101. # Set the keyword used by `mand` to open man pages in Dash.app
  102. # zstyle ':prezto:module:osx:man' dash-keyword 'manpages'
  103.  
  104. #
  105. # Pacman
  106. #
  107.  
  108. # Set the Pacman frontend.
  109. # zstyle ':prezto:module:pacman' frontend 'yaourt'
  110.  
  111. #
  112. # Prompt
  113. #
  114.  
  115. # Set the prompt theme to load.
  116. # Setting it to 'random' loads a random theme.
  117. # Auto set to 'off' on dumb terminals.
  118. zstyle ':prezto:module:prompt' theme 'sorin'
  119.  
  120. # Set the working directory prompt display length.
  121. # By default, it is set to 'short'. Set it to 'long' (without '~' expansion)
  122. # for longer or 'full' (with '~' expansion) for even longer prompt display.
  123. # zstyle ':prezto:module:prompt' pwd-length 'short'
  124.  
  125. # Set the prompt to display the return code along with an indicator for non-zero
  126. # return codes. This is not supported by all prompts.
  127. # zstyle ':prezto:module:prompt' show-return-val 'yes'
  128.  
  129. #
  130. # Ruby
  131. #
  132.  
  133. # Auto switch the Ruby version on directory change.
  134. # zstyle ':prezto:module:ruby:chruby' auto-switch 'yes'
  135.  
  136. #
  137. # Python
  138. #
  139.  
  140. # Auto switch the Python virtualenv on directory change.
  141. # zstyle ':prezto:module:python:virtualenv' auto-switch 'yes'
  142.  
  143. # Automatically initialize virtualenvwrapper if pre-requisites are met.
  144. # zstyle ':prezto:module:python:virtualenv' initialize 'yes'
  145.  
  146. #
  147. # Screen
  148. #
  149.  
  150. # Auto start a session when Zsh is launched in a local terminal.
  151. # zstyle ':prezto:module:screen:auto-start' local 'yes'
  152.  
  153. # Auto start a session when Zsh is launched in a SSH connection.
  154. # zstyle ':prezto:module:screen:auto-start' remote 'yes'
  155.  
  156. #
  157. # SSH
  158. #
  159.  
  160. # Set the SSH identities to load into the agent.
  161. # zstyle ':prezto:module:ssh:load' identities 'id_rsa' 'id_rsa2' 'id_github'
  162.  
  163. #
  164. # Syntax Highlighting
  165. #
  166.  
  167. # Set syntax highlighters.
  168. # By default, only the main highlighter is enabled.
  169. # zstyle ':prezto:module:syntax-highlighting' highlighters \
  170. # 'main' \
  171. # 'brackets' \
  172. # 'pattern' \
  173. # 'line' \
  174. # 'cursor' \
  175. # 'root'
  176. #
  177. # Set syntax highlighting styles.
  178. # zstyle ':prezto:module:syntax-highlighting' styles \
  179. # 'builtin' 'bg=blue' \
  180. # 'command' 'bg=blue' \
  181. # 'function' 'bg=blue'
  182. #
  183. # Set syntax pattern styles.
  184. # zstyle ':prezto:module:syntax-highlighting' pattern \
  185. # 'rm*-rf*' 'fg=white,bold,bg=red'
  186.  
  187. #
  188. # Terminal
  189. #
  190.  
  191. # Auto set the tab and window titles.
  192. # zstyle ':prezto:module:terminal' auto-title 'yes'
  193.  
  194. # Set the window title format.
  195. # zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
  196.  
  197. # Set the tab title format.
  198. # zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
  199.  
  200. # Set the terminal multiplexer title format.
  201. # zstyle ':prezto:module:terminal:multiplexer-title' format '%s'
  202.  
  203. #
  204. # Tmux
  205. #
  206.  
  207. # Auto start a session when Zsh is launched in a local terminal.
  208. # zstyle ':prezto:module:tmux:auto-start' local 'yes'
  209.  
  210. # Auto start a session when Zsh is launched in a SSH connection.
  211. # zstyle ':prezto:module:tmux:auto-start' remote 'yes'
  212.  
  213. # Integrate with iTerm2.
  214. # zstyle ':prezto:module:tmux:iterm' integrate 'yes'
  215.  
  216. # Set the default session name:
  217. # zstyle ':prezto:module:tmux:session' name 'YOUR DEFAULT SESSION NAME'
  218.  
  219. #
  220. # Utility
  221. #
  222.  
  223. # Enabled safe options. This aliases cp, ln, mv and rm so that they prompt
  224. # before deleting or overwriting files. Set to 'no' to disable this safer
  225. # behavior.
  226. # zstyle ':prezto:module:utility' safe-ops 'yes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement