Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # Command colouring
  2. export PS1="\n\[\033[36m\]\u\[\033[1;37m\]@\[\033[1;32m\]\w \[\033[37m\]➜ "
  3.  
  4. # Paths for gems
  5. export GEM_HOME=$HOME/.gem
  6. export PATH=$GEM_HOME/bin:$PATH
  7.  
  8. # Paths for local bin
  9. export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
  10.  
  11. # Alias
  12. alias mongod='mongod --config /usr/local/etc/mongod.conf'
  13. alias aws='aws2'
  14.  
  15. # Function for activating a virtual env for python
  16. activeenv() {
  17. source ~/$1/bin/activate
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement