From e2b78cac2075b1f16f31652795d29e8b5266c71e Mon Sep 17 00:00:00 2001 From: Sebastian Tramp Date: Mon, 3 Jan 2011 11:38:47 +0100 Subject: [PATCH] + autojump --- zshrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/zshrc b/zshrc index 67f9afc..9d3118b 100644 --- a/zshrc +++ b/zshrc @@ -12,9 +12,19 @@ sources+="$HOME/.zsh/functions.zsh" sources+="$HOME/.zsh/private.zsh" sources+="$HOME/.zsh/aliases.zsh" sources+="$HOME/.zsh/completion.zsh" + +# highlights the live command line +# Cloned From: git://github.com/nicoulaj/zsh-syntax-highlighting.git sources+="$HOME/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" + +# provides the package name of a non existing executable +# (sudo apt-get install command-not-found) sources+="/etc/zsh_command_not_found" +# Autojump: a cd command that learns +# Cloned From: git://github.com/joelthelion/autojump.git +sources+="$HOME/.zsh/autojump/autojump.zsh" + foreach file (`echo $sources`) if [[ -a $file ]]; then source $file