zshrc.oh.my.zsh 2.9 KB

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