zshrc.zsh-template 2.9 KB

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