Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # Using powerline-shell for fish prompt
  2. function fish_prompt
  3. powerline-shell --shell bare $status
  4. end
  5.  
  6. # Set screen-256color to TERM environment variable
  7. set -x TERM screen-256color
  8.  
  9. # Set other environment variable
  10. set -x PATH $PATH $HOME/Library/Android/sdk/platform-tools $HOME/.composer/vendor/bin
  11. set -x ANDROID_HOME $HOME/Library/Android/sdk
  12.  
  13. # Set alias
  14. alias ls="ls -G"
  15. alias la="ls -la"
  16. alias vi="nvim"
  17. alias vim="nvim"
  18. alias rmds="find . -name \".DS_Store\" -print -exec rm {} \";\""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement