Advertisement
Guest User

Untitled

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