zshrc.zsh-template 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. # Add wisely, as too many plugins slow down shell startup.
  36. plugins=(git)
  37. source $ZSH/oh-my-zsh.sh
  38. # User configuration
  39. export PATH=$HOME/bin:/usr/local/bin:$PATH
  40. # export MANPATH="/usr/local/man:$MANPATH"
  41. # You may need to manually set your language environment
  42. # export LANG=en_US.UTF-8
  43. # Preferred editor for local and remote sessions
  44. # if [[ -n $SSH_CONNECTION ]]; then
  45. # export EDITOR='vim'
  46. # else
  47. # export EDITOR='mvim'
  48. # fi
  49. # Compilation flags
  50. # export ARCHFLAGS="-arch x86_64"
  51. # ssh
  52. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  53. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  54. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  55. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  56. # For a full list of active aliases, run `alias`.
  57. #
  58. # Example aliases
  59. # alias zshconfig="mate ~/.zshrc"
  60. # alias ohmyzsh="mate ~/.oh-my-zsh"