Advertisement
Guest User

zshrc

a guest
Nov 20th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ### Aliases
  2. alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
  3. alias e='exit'
  4. alias cl='clear'
  5. alias cat='bat'
  6. alias ping='prettyping --nolegend'
  7. alias top="htop"
  8. alias code="code-insiders"
  9. alias update="update-managed-repos"
  10. alias p="~/Projects"
  11.  
  12. # NPM
  13. alias story="npm run storybook"
  14. alias build="npm run build"
  15. alias start="npm start"
  16. alias test="npm test"
  17. alias test-u="npm test -- -u"
  18.  
  19. # python
  20. export ENABLE_PYENV=1
  21.  
  22. # Single-brace syntax because this is required in bash and sh alike
  23. if [ -e "$HOME/env/etc/indeedrc" ]; then
  24. . "$HOME/env/etc/indeedrc"
  25. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement