Browse Source

Add android development stuff

master
Taylor Bockman 6 years ago
parent
commit
223b768911
  1. 2
      .gitignore
  2. 8
      dotfiles/zshrc

2
.gitignore vendored

@ -1,3 +1,5 @@
gitconfig
.gitconfig
*.swp
*.swo
*~

8
dotfiles/zshrc

@ -94,6 +94,14 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
fi
fi
# Android stuff - I develop android on Linux so these are specific to how I have it laid out in Linux
if [[ "$OSTYPE" == "linux-gnu" ]]; then
export PATH=/opt/android-studio:$PATH
export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/platform-tools
fi
precmd(){
vcs_info

Loading…
Cancel
Save