zshrc.oh.my.zsh 2.9 KB

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