Guest User

Untitled

a guest
May 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. # CONFIG FOR Hyper
  2.  
  3. # IF BABUN use THIS
  4. # export HOME="/cygdrive/c/Users/danielVg/"
  5.  
  6. # CONFIG FOR UBUNTU SUBSYSTEM
  7. export HOME="/mnt/c/Users/danielVg"
  8.  
  9. # Path to your oh-my-zsh installation.
  10. # export ZSH=$HOME/.oh-my-zsh
  11. export ZSH=$HOME/.oh-my-zsh
  12.  
  13. # Set name of the theme to load.
  14. ZSH_THEME="robbyrussell"
  15.  
  16. # TEST
  17. # Uncomment the following line to enable command auto-correction.
  18. # ENABLE_CORRECTION="true"
  19.  
  20. # Custom Plugins to load
  21. plugins=(git node npm brew);
  22.  
  23. # User configuration
  24.  
  25. export PATH=$HOME/bin:/usr/local/bin:$PATH
  26.  
  27. source $ZSH/oh-my-zsh.sh
  28.  
  29. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  30. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  31. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  32. # For a full list of active aliases, run `alias`.
  33.  
  34. #change directory shortcuts
  35. alias dropbox='cd ~/Dropbox'
  36. alias downloads='cd ~/Downloads'
  37.  
  38. # -------------------------------------------------------------------
  39. # Git
  40. # -------------------------------------------------------------------
  41. alias ga='git add'
  42. alias gp='git push'
  43. alias gl='git log'
  44. alias gs='git status'
  45. alias gd='git diff'
  46. alias gm='git commit -m'
  47. alias gma='git commit -am'
  48. alias gb='git branch'
  49. alias gc='git checkout'
  50. alias gra='git remote add'
  51. alias grr='git remote rm'
  52. alias gpu='git pull'
  53. alias gcl='git clone'
  54. alias gta='git tag -a -m'
  55. alias gf='git reflog'
  56. alias gmer='git merge'
  57. alias gfr='git fetch -p && git rebase'
  58.  
  59. #commands
  60. alias ls='ls -a'
  61. alias copy='pwd|pbcopy'
  62. alias rm="rm -rf"
  63. alias zshrc='code ~/.zshrc'
  64. alias refresh="source ~/.zshrc"
  65.  
  66. # Vagrant
  67. alias wiki='cd ~/workspace/BestWikiPageOnThePlanet/'
  68. alias vu='vagrant up'
  69. alias vs='vagrant ssh'
  70. alias wikiWeb='sh ~/workspace/wiki.sh'
  71. alias wikiP='xdg-open ~/workspace/BestWikiPageOnThePlanet'
  72. alias wikiS='sh ~/workspace/BestWikiPageOnThePlanet/start.sh'
  73. alias wikiSt='sh ~/workspace/BestWikiPageOnThePlanet/stop.sh'
  74.  
  75. source ~/.oh-my-zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
Add Comment
Please, Sign In to add comment