Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.11 KB | None | 0 0
  1. # If you come from bash you might have to change your $PATH.
  2. export PATH=$HOME/bin:/usr/local/bin:$PATH
  3.  
  4. # Path to your oh-my-zsh installation.
  5. export ZSH=/Users/duncanpulsifer/.oh-my-zsh
  6.  
  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="agnoster"
  11.  
  12. DEFAULT_USER="duncanpulsifer"
  13.  
  14. #plugins=(git colored-man colorize github jira vagrant virtualenv pip python brew osx zsh-syntax-highlighting)
  15.  
  16. # Add env.sh
  17. #source ~/Projects/config/env.sh
  18.  
  19. # Uncomment the following line to use case-sensitive completion.
  20. # CASE_SENSITIVE="true"
  21.  
  22. # Uncomment the following line to use hyphen-insensitive completion. Case
  23. # sensitive completion must be off. _ and - will be interchangeable.
  24. # HYPHEN_INSENSITIVE="true"
  25.  
  26. # Uncomment the following line to disable bi-weekly auto-update checks.
  27. # DISABLE_AUTO_UPDATE="true"
  28.  
  29. # Uncomment the following line to change how often to auto-update (in days).
  30. # export UPDATE_ZSH_DAYS=13
  31.  
  32. # Uncomment the following line to disable colors in ls.
  33. # DISABLE_LS_COLORS="true"
  34.  
  35. # Uncomment the following line to disable auto-setting terminal title.
  36. # DISABLE_AUTO_TITLE="true"
  37.  
  38. # Uncomment the following line to enable command auto-correction.
  39. # ENABLE_CORRECTION="true"
  40.  
  41. # Uncomment the following line to display red dots whilst waiting for completion.
  42. # COMPLETION_WAITING_DOTS="true"
  43.  
  44. # Uncomment the following line if you want to disable marking untracked files
  45. # under VCS as dirty. This makes repository status check for large repositories
  46. # much, much faster.
  47. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  48.  
  49. # Uncomment the following line if you want to change the command execution time
  50. # stamp shown in the history command output.
  51. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  52. # HIST_STAMPS="mm/dd/yyyy"
  53.  
  54. # Would you like to use another custom folder than $ZSH/custom?
  55. # ZSH_CUSTOM=/path/to/new-custom-folder
  56.  
  57. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  58. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  59. # Example format: plugins=(rails git textmate ruby lighthouse)
  60. # Add wisely, as too many plugins slow down shell startup.
  61. plugins=(git git-extras git-flow colored-man colorize github vagrant virtualenv virtualenvwrapper pip python brew osx zsh-syntax-highlighting npm docker django bower celery node sublime sudo supervisor web-search)
  62.  
  63. # User configuration
  64.  
  65. export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
  66.  
  67. export ANDROID_HOME=/Users/duncanpulsifer/Library/Android/sdk
  68. export PATH=$PATH:/Users/duncanpulsifer/Library/Android/sdk/platform-tools
  69. export PATH=$PATH:/Users/duncanpulsifer/Library/Android/sdk/tools
  70.  
  71. export PATH="$HOME/.fastlane/bin:$PATH"
  72. export FASTLANE_PASSWORD='iToMo^6&7MvY'
  73. export MATCH_PASSWORD='iToMo^6&7MvY'
  74. export HARBR_AUTH0_CLIENT_ID="GF8Z7qIGHGqtRQqOFTeSSmurTwK2sUon"
  75. export HARBR_AUTH0_DOMAIN="harbr-test.auth0.com"
  76. export HARBR_DARKSKY_KEY="e8be6c0279c8f6227e3f500eb289230e"
  77. export HARBR_SCAPHOLD_URL="us-west-2.api.scaphold.io/graphql/q8C67fsUoANapOtYDr0"
  78. export HARBR_TEST_URL="us-west-2.api.scaphold.io/graphql/q8C67fsUoANapOtYDr0"
  79.  
  80. # export MANPATH="/usr/local/man:$MANPATH"
  81.  
  82. source $ZSH/oh-my-zsh.sh
  83.  
  84. # You may need to manually set your language environment
  85. # export LANG=en_US.UTF-8
  86.  
  87. # Preferred editor for local and remote sessions
  88. # if [[ -n $SSH_CONNECTION ]]; then
  89. # export EDITOR='vim'
  90. # else
  91. # export EDITOR='mvim'
  92. # fi
  93.  
  94. # Compilation flags
  95. # export ARCHFLAGS="-arch x86_64"
  96.  
  97. # ssh
  98. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  99.  
  100. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  101. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  102. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  103. # For a full list of active aliases, run `alias`.
  104. #
  105. # Example aliases
  106. alias zshconfig="mate ~/.zshrc"
  107. alias ohmyzsh="mate ~/.oh-my-zsh"
  108.  
  109. # Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
  110. export PATH="$PATH:$HOME/.rvm/bin"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement