zshrc 2.6 KB

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