zshrc.zsh-template 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # If you come from bash you might have to change your $PATH.
  2. # export PATH=$HOME/bin:/usr/local/bin:$PATH
  3. # Path to your oh-my-zsh installation.
  4. export ZSH=$HOME/.oh-my-zsh
  5. # Set name of the theme to load --- if set to "random", it will
  6. # load a random theme each time oh-my-zsh is loaded, in which case,
  7. # to know which specific one was loaded, run: echo $RANDOM_THEME
  8. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  9. ZSH_THEME="robbyrussell"
  10. # Set list of themes to pick from when loading at random
  11. # Setting this variable when ZSH_THEME=random will cause zsh to load
  12. # a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
  13. # If set to an empty array, this variable will have no effect.
  14. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
  15. # Uncomment the following line to use case-sensitive completion.
  16. # CASE_SENSITIVE="true"
  17. # Uncomment the following line to use hyphen-insensitive completion.
  18. # Case-sensitive completion must be off. _ and - will be interchangeable.
  19. # HYPHEN_INSENSITIVE="true"
  20. # Uncomment the following line to disable bi-weekly auto-update checks.
  21. # DISABLE_AUTO_UPDATE="true"
  22. # Uncomment the following line to change how often to auto-update (in days).
  23. # export UPDATE_ZSH_DAYS=13
  24. # Uncomment the following line to disable colors in ls.
  25. # DISABLE_LS_COLORS="true"
  26. # Uncomment the following line to disable auto-setting terminal title.
  27. # DISABLE_AUTO_TITLE="true"
  28. # Uncomment the following line to enable command auto-correction.
  29. # ENABLE_CORRECTION="true"
  30. # Uncomment the following line to display red dots whilst waiting for completion.
  31. # COMPLETION_WAITING_DOTS="true"
  32. # Uncomment the following line if you want to disable marking untracked files
  33. # under VCS as dirty. This makes repository status check for large repositories
  34. # much, much faster.
  35. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  36. # Uncomment the following line if you want to change the command execution time
  37. # stamp shown in the history command output.
  38. # You can set one of the optional three formats:
  39. # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  40. # or set a custom format using the strftime function format specifications,
  41. # see 'man strftime' for details.
  42. # HIST_STAMPS="mm/dd/yyyy"
  43. # Would you like to use another custom folder than $ZSH/custom?
  44. # ZSH_CUSTOM=/path/to/new-custom-folder
  45. # Which plugins would you like to load?
  46. # Standard plugins can be found in ~/.oh-my-zsh/plugins/*
  47. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  48. # Example format: plugins=(rails git textmate ruby lighthouse)
  49. # Add wisely, as too many plugins slow down shell startup.
  50. plugins=(
  51. git
  52. )
  53. source $ZSH/oh-my-zsh.sh
  54. # User configuration
  55. # export MANPATH="/usr/local/man:$MANPATH"
  56. # You may need to manually set your language environment
  57. # export LANG=en_US.UTF-8
  58. # Preferred editor for local and remote sessions
  59. # if [[ -n $SSH_CONNECTION ]]; then
  60. # export EDITOR='vim'
  61. # else
  62. # export EDITOR='mvim'
  63. # fi
  64. # Compilation flags
  65. # export ARCHFLAGS="-arch x86_64"
  66. # ssh
  67. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  68. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  69. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  70. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  71. # For a full list of active aliases, run `alias`.
  72. #
  73. # Example aliases
  74. # alias zshconfig="mate ~/.zshrc"
  75. # alias ohmyzsh="mate ~/.oh-my-zsh"