zshrc.zsh-template 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. # Example aliases
  9. # alias zshconfig="mate ~/.zshrc"
  10. # alias ohmyzsh="mate ~/.oh-my-zsh"
  11. # Set this to use case-sensitive completion
  12. # CASE_SENSITIVE="true"
  13. # Uncomment this to disable bi-weekly auto-update checks
  14. # DISABLE_AUTO_UPDATE="true"
  15. # Uncomment to change how often to auto-update? (in days)
  16. # export UPDATE_ZSH_DAYS=13
  17. # Uncomment following line if you want to disable colors in ls
  18. # DISABLE_LS_COLORS="true"
  19. # Uncomment following line if you want to disable autosetting terminal title.
  20. # DISABLE_AUTO_TITLE="true"
  21. # Uncomment following line if you want to disable command autocorrection
  22. # DISABLE_CORRECTION="true"
  23. # Uncomment following line if you want red dots to be displayed while waiting for completion
  24. # COMPLETION_WAITING_DOTS="true"
  25. # Uncomment following line if you want to disable marking untracked files under
  26. # VCS as dirty. This makes repository status check for large repositories much,
  27. # much faster.
  28. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  29. # Uncomment following line if you want to the command execution time stamp shown
  30. # in the history command output.
  31. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  32. # HIST_STAMPS="mm/dd/yyyy"
  33. # Would you like to use another custom folder than $ZSH/custom?
  34. # ZSH_CUSTOM=/path/to/new-custom-folder
  35. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  36. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  37. # Example format: plugins=(rails git textmate ruby lighthouse)
  38. plugins=(git)
  39. source $ZSH/oh-my-zsh.sh
  40. # User configuration
  41. export PATH=$HOME/bin:/usr/local/bin:$PATH
  42. # export MANPATH="/usr/local/man:$MANPATH"
  43. # You may need to manually set your language environment
  44. # export LANG=en_US.UTF-8
  45. # # Preferred editor for local and remote sessions
  46. # if [[ -n $SSH_CONNECTION ]]; then
  47. # export EDITOR='vim'
  48. # else
  49. # export EDITOR='mvim'
  50. # fi
  51. # Compilation flags
  52. # export ARCHFLAGS="-arch x86_64"
  53. # ssh
  54. # export SSH_KEY_PATH="~/.ssh/dsa_id"