summaryrefslogtreecommitdiff
path: root/.zsh
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2010-07-06 16:29:51 +0200
committerTobias Klauser <tklauser@distanz.ch>2010-07-06 16:29:51 +0200
commit2b413d24560185a6d28465ce6badf230025868f5 (patch)
tree2379c45c90fcd2f6c42168b295724a4c2c03bd70 /.zsh
parentadb6c3da0890cdf63d7a17fd05339b93697ed6b6 (diff)
Add configuration for Android SDK
Diffstat (limited to '.zsh')
-rw-r--r--.zsh/zshenv/99_android16
1 files changed, 16 insertions, 0 deletions
diff --git a/.zsh/zshenv/99_android b/.zsh/zshenv/99_android
new file mode 100644
index 0000000..971c23c
--- /dev/null
+++ b/.zsh/zshenv/99_android
@@ -0,0 +1,16 @@
+# zshenv/99_android
+#
+# Set variables related to the Android SDK
+#
+# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: git://git.distanz.ch/dotfiles/zsh.git
+
+_ANDROID_SDK=/opt/android-sdk-linux_86
+
+if [ -d $_ANDROID_SDK ] ; then
+ export PATH=$PATH:$_ANDROID_SDK/tools
+fi
+
+# vim:ft=zsh