.zshrc 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # Path to your oh-my-zsh installation.
  2. export ZSH=/home/david/.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="dpoggi"
  8. # Uncomment the following line to use case-sensitive completion.
  9. # CASE_SENSITIVE="true"
  10. # Uncomment the following line to use hyphen-insensitive completion. Case
  11. # sensitive completion must be off. _ and - will be interchangeable.
  12. # HYPHEN_INSENSITIVE="true"
  13. # Uncomment the following line to disable bi-weekly auto-update checks.
  14. # DISABLE_AUTO_UPDATE="true"
  15. # Uncomment the following line to change how often to auto-update (in days).
  16. # export UPDATE_ZSH_DAYS=13
  17. # Uncomment the following line to disable colors in ls.
  18. # DISABLE_LS_COLORS="true"
  19. # Uncomment the following line to disable auto-setting terminal title.
  20. # DISABLE_AUTO_TITLE="true"
  21. # Uncomment the following line to enable command auto-correction.
  22. # ENABLE_CORRECTION="true"
  23. # Uncomment the following line to display red dots whilst waiting for completion.
  24. # COMPLETION_WAITING_DOTS="true"
  25. # Uncomment the following line if you want to disable marking untracked files
  26. # under VCS as dirty. This makes repository status check for large repositories
  27. # much, much faster.
  28. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  29. # Uncomment the following line if you want to change the command execution time
  30. # stamp shown 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. # Add wisely, as too many plugins slow down shell startup.
  39. plugins=(git)
  40. # User configuration
  41. export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:"
  42. # export MANPATH="/usr/local/man:$MANPATH"
  43. source $ZSH/oh-my-zsh.sh
  44. # You may need to manually set your language environment
  45. # export LANG=en_US.UTF-8
  46. # Preferred editor for local and remote sessions
  47. # if [[ -n $SSH_CONNECTION ]]; then
  48. # export EDITOR='vim'
  49. # else
  50. # export EDITOR='mvim'
  51. # fi
  52. # Compilation flags
  53. # export ARCHFLAGS="-arch x86_64"
  54. # ssh
  55. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  56. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  57. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  58. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  59. # For a full list of active aliases, run `alias`.
  60. #
  61. # Example aliases
  62. # alias zshconfig="mate ~/.zshrc"
  63. # alias ohmyzsh="mate ~/.oh-my-zsh"
  64. #GoLang Path
  65. export PATH=$PATH:/usr/bin/go:$GOPATH/bin