Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. # Path to your oh-my-zsh installation.
  2. export ZSH=/Users/fpigeon/.oh-my-zsh
  3.  
  4. # Set name of the theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. # Optionally, if you set this to "random", it'll load a random theme each
  7. # time that ohmy-zsh is loaded.
  8. ZSH_THEME=""
  9.  
  10. # Uncomment the following line to use case-sensitive completion.
  11. # CASE_SENSITIVE="true"
  12.  
  13. # Uncomment the following line to use hyphen-insensitive completion. Case
  14. # sensitive completion must be off. _ and - will be interchangeable.
  15. # HYPHEN_INSENSITIVE="true"
  16.  
  17. # Uncomment the following line to disable bi-weekly auto-update checks.
  18. # DISABLE_AUTO_UPDATE="true"
  19.  
  20. # Uncomment the following line to change how often to auto-update (in days).
  21. # export UPDATE_ZSH_DAYS=13
  22.  
  23. # Uncomment the following line to disable colors in ls.
  24. # DISABLE_LS_COLORS="true"
  25.  
  26. # Uncomment the following line to disable auto-setting terminal title.
  27. # DISABLE_AUTO_TITLE="true"
  28.  
  29. # Uncomment the following line to enable command auto-correction.
  30. # ENABLE_CORRECTION="true"
  31.  
  32. # Uncomment the following line to display red dots whilst waiting for completion.
  33. # COMPLETION_WAITING_DOTS="true"
  34.  
  35. # Uncomment the following line if you want to disable marking untracked files
  36. # under VCS as dirty. This makes repository status check for large repositories
  37. # much, much faster.
  38. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  39.  
  40. # Uncomment the following line if you want to change the command execution time
  41. # stamp shown in the history command output.
  42. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  43. # HIST_STAMPS="mm/dd/yyyy"
  44.  
  45. # Would you like to use another custom folder than $ZSH/custom?
  46. # ZSH_CUSTOM=/path/to/new-custom-folder
  47.  
  48. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  49. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  50. # Example format: plugins=(rails git textmate ruby lighthouse)
  51. # Add wisely, as too many plugins slow down shell startup.
  52. plugins=(git node npm yarn)
  53.  
  54. # User configuration
  55. # `export PATH="$HOME/.composer/vendor/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/.npm-packages/bin:$HOME"
  56. # export PATH="$PATH:`yarn global bin`"
  57. export PATH="/usr/local/sbin:/usr/local/bin/node:/Users/fpigeon/.npm-packages/bin:/.npm-packages/bin:$PATH"
  58. export PATH="$HOME/.npm-packages/bin:$PATH"
  59.  
  60. source $ZSH/oh-my-zsh.sh
  61.  
  62. # You may need to manually set your language environment
  63. # export LANG=en_US.UTF-8
  64.  
  65. # Preferred editor for local and remote sessions
  66. if [[ -n $SSH_CONNECTION ]]; then
  67. export EDITOR='code'
  68. else
  69. export EDITOR='code'
  70. fi
  71.  
  72. # Compilation flags
  73. # export ARCHFLAGS="-arch x86_64"
  74.  
  75. # ssh
  76. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  77.  
  78. DEFAULT_USER=fpigeon
  79.  
  80. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  81. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  82. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  83. # For a full list of active aliases, run `alias`.
  84. #
  85. # edit config files
  86. alias zshell="code ~/.zshrc"
  87. alias hyper="code ~/.hyper.js"
  88.  
  89. # Git
  90. alias gs="git status"
  91. alias gb="git branch"
  92. alias gco="git checkout"
  93. alias gcm="git commit"
  94. alias ga="git add"
  95.  
  96. # Laravel
  97. alias codeup="ssh root@104.131.226.209"
  98. alias production="ssh forge@45.55.87.149"
  99. alias plex="ssh fpigeon@192.168.0.10"
  100. alias vm="homestead ssh"
  101. alias homestead='function __homestead() { (cd ~/Homestead && vagrant $*); unset -f __homestead; }; __homestead'
  102. alias he="subl ~/.homestead/homestead.yaml"
  103.  
  104. # Jekkyl
  105. alias jp="jekyll build; git commit -m 'rebuild pages' --allow-empty; git push origin gh-pages"
  106.  
  107. # Pure prmopt
  108. autoload -U promptinit; promptinit
  109. prompt pure
  110. source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement