Guest User

Untitled

a guest
Oct 18th, 2017
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. # Path to your oh-my-zsh installation.
  2. export ZSH=$HOME/.oh-my-zsh
  3.  
  4. # Set name of the theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. ZSH_THEME="fwalch"
  7.  
  8. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  9. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  10. # Example format: plugins=(rails git textmate ruby lighthouse)
  11. # Add wisely, as too many plugins slow down shell startup.
  12. plugins=(git vi-mode)
  13.  
  14. source $ZSH/oh-my-zsh.sh
  15.  
  16. # User configuration
  17.  
  18. export PATH="/Users/andrewrennie/Development/sdk/platform-tools:/Users/andrewrennie/Development/sdk/tools:/usr/local/heroku/bin:/usr/bin:/usr/local/bin:/bin:/usr/sbin:/sbin:/opt/local/bin:/opt/local/sbin:~/bin:/opt/X11/bin:/usr/texbin:/usr/local/sbin"
  19. # export MANPATH="/usr/local/man:$MANPATH"
  20. export DOCKER_PASS_QUAY="4CNI2O89XQS4M64S3YSI499Y081GFKDX16WAZXVLJAHYWX8LR7874P7WFF7BPNOT"
  21.  
  22. # Preferred editor for local and remote sessions
  23. export EDITOR='vim'
  24.  
  25. # ssh
  26. export SSH_KEY_PATH="~/.ssh/"
  27.  
  28. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  29. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  30. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  31. # For a full list of active aliases, run `alias`.
  32. #
  33. alias sudo='sudo '
  34. alias rmpyc='find . -name "*.pyc" | xargs rm;'
  35. alias emacs="/usr/local/Cellar/emacs/24.5/bin/emacs-24.5"
  36. alias ctags="/usr/local/Cellar/ctags/5.8_1/bin/ctags"
  37. alias rmswp="find . -type f -name \"*.sw[klmnop]\" -delete"
  38.  
  39. eval "$(thefuck --alias)"
  40. bindkey jk vi-cmd-mode
  41.  
  42. # The next line updates PATH for the Google Cloud SDK.
  43. if [ -f /Users/andrewrennie/google-cloud-sdk/path.zsh.inc ]; then
  44. source '/Users/andrewrennie/google-cloud-sdk/path.zsh.inc'
  45. fi
  46.  
  47. # The next line enables shell command completion for gcloud.
  48. if [ -f /Users/andrewrennie/google-cloud-sdk/completion.zsh.inc ]; then
  49. source '/Users/andrewrennie/google-cloud-sdk/completion.zsh.inc'
  50. fi
  51. export PATH="/usr/local/bin:$PATH"
  52.  
  53. export NVM_DIR="$HOME/.nvm"
  54. [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
  55. [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
  56. export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
Add Comment
Please, Sign In to add comment