aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.before
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2013-11-03 12:30:45 +0100
committerDavid Runge <david.runge@frqrec.com>2013-11-03 12:30:45 +0100
commit67b0ec5741d327d27afe88783d85fcf2c4c4f204 (patch)
tree4ea47807c5e775927b96eb79933c09fbfcd0468e /.zsh.before
downloaddotfiles-67b0ec5741d327d27afe88783d85fcf2c4c4f204.tar.gz
dotfiles-67b0ec5741d327d27afe88783d85fcf2c4c4f204.tar.bz2
dotfiles-67b0ec5741d327d27afe88783d85fcf2c4c4f204.tar.xz
dotfiles-67b0ec5741d327d27afe88783d85fcf2c4c4f204.zip
First commit
Diffstat (limited to '.zsh.before')
-rw-r--r--.zsh.before/aliases.zsh1
-rw-r--r--.zsh.before/functions.zsh4
-rw-r--r--.zsh.before/keychain.zsh.off4
-rw-r--r--.zsh.before/path.zsh16
4 files changed, 25 insertions, 0 deletions
diff --git a/.zsh.before/aliases.zsh b/.zsh.before/aliases.zsh
new file mode 100644
index 0000000..b38dc53
--- /dev/null
+++ b/.zsh.before/aliases.zsh
@@ -0,0 +1 @@
+alias brew='echo'
diff --git a/.zsh.before/functions.zsh b/.zsh.before/functions.zsh
new file mode 100644
index 0000000..01bc224
--- /dev/null
+++ b/.zsh.before/functions.zsh
@@ -0,0 +1,4 @@
+if [ -e $HOME/bin/functions.sh ]
+then
+ . $HOME/bin/functions.sh
+fi
diff --git a/.zsh.before/keychain.zsh.off b/.zsh.before/keychain.zsh.off
new file mode 100644
index 0000000..372a5bb
--- /dev/null
+++ b/.zsh.before/keychain.zsh.off
@@ -0,0 +1,4 @@
+if [ -f /usr/bin/keychain ]
+then
+ eval $(keychain --eval --agents ssh -Q --quiet ~/.ssh/id_rsa.*)
+fi
diff --git a/.zsh.before/path.zsh b/.zsh.before/path.zsh
new file mode 100644
index 0000000..bd27781
--- /dev/null
+++ b/.zsh.before/path.zsh
@@ -0,0 +1,16 @@
+# < BEFORE $PATH
+PATH=$HOME/bin:$PATH
+# > BEFORE
+
+# < AFTER $PATH
+#PATH=$PATH:"/opt/scilab-4.1.2/bin"
+#PATH=$PATH:"/opt/java6/bin":"/opt/java6/jre/bin"
+#PATH=$PATH:/extra/DF3120/minifs/toolchain/arm-v4t-linux-uclibcgnueabi/bin
+# ANDROID
+#PATH=$PATH:"/opt/android-sdk/tools"
+#PATH=$PATH:"/opt/android-sdk/platform-tools"
+#PATH=$PATH:"/extra/android/cyanogenmod/out/host/linux-x86/bin"
+
+## RVM
+PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
+# > AFTER