zshrc.zsh-template 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Path to your oh-my-zsh installation.
  2. export ZSH=$HOME/.oh-my-zsh
  3. # Set name of the theme to load.
  4. # Look in ~/.oh-my-zsh/themes/
  5. # Optionally, if you set this to "random", it'll load a random theme each
  6. # time that oh-my-zsh is loaded.
  7. ZSH_THEME="robbyrussell"
  8. # Uncomment the following line to use case-sensitive completion.
  9. # CASE_SENSITIVE="true"
  10. # Uncomment the following line to disable bi-weekly auto-update checks.
  11. # DISABLE_AUTO_UPDATE="true"
  12. # Uncomment the following line to change how often to auto-update (in days).
  13. # export UPDATE_ZSH_DAYS=13
  14. # Uncomment the following line to disable colors in ls.
  15. # DISABLE_LS_COLORS="true"
  16. # Uncomment the following line to disable auto-setting terminal title.
  17. # DISABLE_AUTO_TITLE="true"
  18. # Uncomment the following line to enable command auto-correction.
  19. # ENABLE_CORRECTION="true"
  20. # Uncomment the following line to display red dots whilst waiting for completion.
  21. # COMPLETION_WAITING_DOTS="true"
  22. # Uncomment the following line if you want to disable marking untracked files
  23. # under VCS as dirty. This makes repository status check for large repositories
  24. # much, much faster.
  25. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  26. # Uncomment the following line if you want to change the command execution time
  27. # stamp shown in the history command output.
  28. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  29. # HIST_STAMPS="mm/dd/yyyy"
  30. # Would you like to use another custom folder than $ZSH/custom?
  31. # ZSH_CUSTOM=/path/to/new-custom-folder
  32. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  33. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  34. # Example format: plugins=(rails git textmate ruby lighthouse)
  35. plugins=(git)
  36. source $ZSH/oh-my-zsh.sh
  37. # User configuration
  38. export PATH=$HOME/bin:/usr/local/bin:$PATH
  39. # export MANPATH="/usr/local/man:$MANPATH"
  40. # You may need to manually set your language environment
  41. # export LANG=en_US.UTF-8
  42. # Preferred editor for local and remote sessions
  43. # if [[ -n $SSH_CONNECTION ]]; then
  44. # export EDITOR='vim'
  45. # else
  46. # export EDITOR='mvim'
  47. # fi
  48. # Compilation flags
  49. # export ARCHFLAGS="-arch x86_64"
  50. # ssh
  51. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  52. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  53. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  54. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  55. # For a full list of active aliases, run `alias`.
  56. #
  57. # Example aliases
  58. # alias zshconfig="mate ~/.zshrc"
  59. # alias ohmyzsh="mate ~/.oh-my-zsh"