zimrc 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. syntax-highlighting history-substring-search prompt completion)
  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
  24. # if none is provided, the default '.zcompdump' is used.
  25. #zcompdump_file=".zcompdump-${HOST}-${ZSH_VERSION}"
  26. #
  27. # Utility
  28. #
  29. # Uncomment to enable command correction prompts
  30. # See: http://zsh.sourceforge.net/Doc/Release/Options.html#Input_002fOutput
  31. #setopt CORRECT
  32. #
  33. # Environment
  34. #
  35. # Set the string below to the desired terminal title format string.
  36. # The terminal title is redrawn upon directory change, however, variables like
  37. # ${PWD} are only evaluated once. Use prompt expansion strings for dynamic data:
  38. # http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html#Simple-Prompt-Escapes
  39. # The example below uses the following format: 'username@host:/current/directory'
  40. ztermtitle='%n@%m:%~'
  41. #
  42. # Input
  43. #
  44. # Uncomment to enable double-dot expansion.
  45. # This appends '../' to your input for each '.' you type after an initial '..'
  46. #zdouble_dot_expand='true'
  47. #
  48. # Syntax-Highlighting
  49. #
  50. # This determines what highlighters will be used with the syntax-highlighting module.
  51. # Documentation of the highlighters can be found here:
  52. # https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md
  53. # For (u)rxvt, termite and gnome-terminal users,
  54. # removing the 'cursor' highlighter will fix the disappearing cursor problem
  55. zhighlighters=(main brackets cursor)
  56. #
  57. # SSH
  58. #
  59. # Load these ssh identities with the ssh module
  60. #zssh_ids=(id_rsa)
  61. #
  62. # Pacman
  63. #
  64. # Set (optional) pacman front-end.
  65. #zpacman_frontend='powerpill'
  66. # Load any helper scripts as defined here
  67. #zpacman_helper=(aur)