zimrc 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #################
  2. # CORE SETTINGS #
  3. #################
  4. #
  5. # Zim settings
  6. #
  7. # Select what modules you would like enabled.
  8. # The second line of modules may depend on options set by modules in the first
  9. # line. These dependencies are noted on the respective module's README.md.
  10. zmodules=(directory environment git git-info history input utility custom \
  11. prompt completion syntax-highlighting history-substring-search )
  12. ###################
  13. # MODULE SETTINGS #
  14. ###################
  15. #
  16. # Prompt
  17. #
  18. # Set your desired prompt here
  19. zprompt_theme='steeef'
  20. #
  21. # Completion
  22. #
  23. # Set an optional host-specific filename for the completion cache file. If none
  24. # is provided, the default '.zcompdump' is used.
  25. #zcompdump_file=".zcompdump-${HOST}-${ZSH_VERSION}"
  26. #
  27. # Utility
  28. #
  29. # Uncomment to enable spelling correction prompt for commands. See:
  30. # http://zsh.sourceforge.net/Doc/Release/Options.html#Input_002fOutput
  31. #setopt CORRECT
  32. # Set custom spelling correction prompt
  33. #SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? '
  34. #
  35. # Environment
  36. #
  37. # Set the string below to the desired terminal title format string.
  38. # The terminal title is redrawn upon directory change, however, variables like
  39. # ${PWD} are only evaluated once. Use prompt expansion strings for dynamic data:
  40. # http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html#Simple-Prompt-Escapes
  41. # The example below uses the following format: 'username@host:/current/directory'
  42. ztermtitle='%n@%m:%~'
  43. #
  44. # Input
  45. #
  46. # Set to vi or emacs
  47. zinput_mode='emacs'
  48. # Uncomment to enable double-dot expansion. This appends '../' to your input for
  49. # each '.' you type after an initial '..'
  50. #zdouble_dot_expand='true'
  51. #
  52. # Syntax-Highlighting
  53. #
  54. # This determines what highlighters will be used with the syntax-highlighting module.
  55. # Documentation of the highlighters can be found here:
  56. # https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md
  57. zhighlighters=(main brackets)
  58. #
  59. # SSH
  60. #
  61. # Load these ssh identities with the ssh module
  62. #zssh_ids=(id_rsa)
  63. #
  64. # Pacman
  65. #
  66. # Set (optional) pacman front-end.
  67. #zpacman_frontend='powerpill'
  68. # Load any helper scripts as defined here
  69. #zpacman_helper=(aur)