Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Path to your oh-my-zsh installation.
  2. export ZSH=/Users/glen/.oh-my-zsh
  3.  
  4. # Set name of the theme to load. Optionally, if you set this to "random"
  5. # it'll load a random theme each time that oh-my-zsh is loaded.
  6. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  7. ZSH_THEME="robbyrussell"
  8.  
  9. # Uncomment the following line to use case-sensitive completion.
  10. # CASE_SENSITIVE="true"
  11.  
  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.  
  16. # Uncomment the following line to disable bi-weekly auto-update checks.
  17. # DISABLE_AUTO_UPDATE="true"
  18.  
  19. # Uncomment the following line to change how often to auto-update (in days).
  20. # export UPDATE_ZSH_DAYS=13
  21.  
  22. # Uncomment the following line to disable colors in ls.
  23. # DISABLE_LS_COLORS="true"
  24.  
  25. # Uncomment the following line to disable auto-setting terminal title.
  26. # DISABLE_AUTO_TITLE="true"
  27.  
  28. # Uncomment the following line to enable command auto-correction.
  29. # ENABLE_CORRECTION="true"
  30.  
  31. # Uncomment the following line to display red dots whilst waiting for completion.
  32. # COMPLETION_WAITING_DOTS="true"
  33.  
  34. # Uncomment the following line if you want to disable marking untracked files
  35. # under VCS as dirty. This makes repository status check for large repositories
  36. # much, much faster.
  37. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  38.  
  39. # Uncomment the following line if you want to change the command execution time
  40. # stamp shown in the history command output.
  41. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  42. # HIST_STAMPS="mm/dd/yyyy"
  43.  
  44. # Would you like to use another custom folder than $ZSH/custom?
  45. # ZSH_CUSTOM=/path/to/new-custom-folder
  46.  
  47. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  48. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  49. # Example format: plugins=(rails git textmate ruby lighthouse)
  50. # Add wisely, as too many plugins slow down shell startup.
  51. plugins=(git)
  52.  
  53. source $ZSH/oh-my-zsh.sh
  54.  
  55. # User configuration
  56.  
  57. # If you come from bash you might have to change your $PATH.
  58. export PATH=$HOME/bin:/usr/local/bin:$PATH
  59. # export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
  60.  
  61. # export MANPATH="/usr/local/man:$MANPATH"
  62.  
  63. # You may need to manually set your language environment
  64. # export LANG=en_US.UTF-8
  65.  
  66. # Preferred editor for local and remote sessions
  67. # if [[ -n $SSH_CONNECTION ]]; then
  68. #   export EDITOR='vim'
  69. # else
  70. #   export EDITOR='mvim'
  71. # fi
  72.  
  73. # Compilation flags
  74. # export ARCHFLAGS="-arch x86_64"
  75.  
  76. # ssh
  77. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  78.  
  79. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  80. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  81. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  82. # For a full list of active aliases, run `alias`.
  83. #
  84. # Example aliases
  85. # alias zshconfig="mate ~/.zshrc"
  86. # alias ohmyzsh="mate ~/.oh-my-zsh"
  87.  
  88. autoload -U promptinit; promptinit
  89. prompt pure
  90.  
  91. source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  92. export ZSH_HIGHLIGHT_HIGHLIGHTERS_DIR=/usr/local/share/zsh-syntax-highlighting/highlighters
  93. # Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
  94. export PATH="$PATH:$HOME/.rvm/bin"
  95.  
  96. export NVM_DIR="$HOME/.nvm"
  97. [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
  98. [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion
  99.  
  100.  
  101. # Gopath export custom
  102. export GOPATH=$HOME/go
  103.  
  104. # Path for protobuf
  105. export PATH=$PATH:/usr/local/go/bin
  106.  
  107. # fuckin work bitch
  108. export PATH=$PATH:$GOPATH/bin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement