Guest User

Untitled

a guest
Jun 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. ##### Set PATH #####
  2. # Homebrew
  3. export PATH="$PATH:$HOME/homebrew/bin"
  4. # My Bin
  5. export PATH="$PATH:$HOME/bin"
  6. ####################
  7. ##### Add preminalry scripts & dependencies #####
  8. # Add Homeshick
  9. if [[ ! -d "$HOME/.homesick/repos/homeshick" ]]; then
  10. git clone git://github.com/andsens/homeshick.git $HOME/.homesick/repos/homeshick
  11. fi
  12. source "$HOME/.homesick/repos/homeshick/homeshick.sh"
  13. # Add Antigen
  14. if [[ ! -f "$HOME/.antigen.zsh" ]]; then
  15. curl -L git.io/antigen > "$HOME/.antigen.zsh"
  16. fi
  17. source "$HOME/.antigen.zsh"
  18. #################################################
  19. ##### Antigen #####
  20. antigen use oh-my-zsh
  21. # My custom
  22. antigen bundle $HOME/.zsh-custom/00_presetting --no-local-clone
  23. antigen bundle $HOME/.zsh-custom/git --no-local-clone
  24. antigen bundle $HOME/.zsh-custom/google-cloud-sdk --no-local-clone
  25. # Non-custom
  26. antigen bundle lukechilds/zsh-nvm
  27. # Set a theme
  28. antigen theme intheloop
  29. antigen apply
  30. ###################
Add Comment
Please, Sign In to add comment