Guest User

Untitled

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