Guest User

Untitled

a guest
Oct 24th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. # Load Pure
  2.  
  3. autoload -U promptinit; promptinit
  4. prompt pure
  5. setopt autocd
  6.  
  7. alias ls='ls -G'
  8. alias lsa='ls -Ga'
  9. alias cl='clear'
  10.  
  11. alias desk='cd ~/Desktop'
  12. alias htdocs='cd /Applications/XAMPP/xamppfiles/htdocs/1'
  13. alias dev='cd ~/Dropbox/Dev'
  14.  
  15. alias showhiddenfiles='defaults write com.apple.finder AppleShowAllFiles YES && killall Finder'
  16. alias hidehiddenfiles='defaults write com.apple.finder AppleShowAllFiles NO && killall Finder'
  17.  
  18. alias hidedesktopfiles='defaults write com.apple.finder CreateDesktop -bool false && killall Finder'
  19. alias showdesktopfiles='defaults write com.apple.finder CreateDesktop -bool true && killall Finder'
  20.  
  21. alias tree='tree -C'
  22.  
  23. alias yrd='yarn run dev'
  24.  
  25. alias gs='git status'
  26. alias ga='git add'
  27. alias gl='git log'
  28. alias glo='git log --oneline'
  29. alias gc='git commit'
  30.  
  31. # Enable Syntax Highlighting
  32. source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
Add Comment
Please, Sign In to add comment