From 8dd06e3c7334b09a4d15562af734dbc18a1c5b89 Mon Sep 17 00:00:00 2001 From: Robby Russell Date: Wed, 23 Sep 2009 07:43:36 -0700 Subject: [PATCH] Moving all zsh config options into a lib/ subdirectory to make way for some upcoming changes to directory structure and configuration options --- aliases.zsh => lib/aliases.zsh | 0 colors.zsh => lib/colors.zsh | 0 completion.zsh => lib/completion.zsh | 0 functions.zsh => lib/functions.zsh | 0 git.zsh => lib/git.zsh | 0 grep.zsh => lib/grep.zsh | 0 history.zsh => lib/history.zsh | 0 key-bindings.zsh => lib/key-bindings.zsh | 0 prompt.zsh => lib/prompt.zsh | 0 rake_completion.zsh => lib/rake_completion.zsh | 0 oh-my-zsh.sh | 2 +- 11 files changed, 1 insertion(+), 1 deletion(-) rename aliases.zsh => lib/aliases.zsh (100%) rename colors.zsh => lib/colors.zsh (100%) rename completion.zsh => lib/completion.zsh (100%) rename functions.zsh => lib/functions.zsh (100%) rename git.zsh => lib/git.zsh (100%) rename grep.zsh => lib/grep.zsh (100%) rename history.zsh => lib/history.zsh (100%) rename key-bindings.zsh => lib/key-bindings.zsh (100%) rename prompt.zsh => lib/prompt.zsh (100%) rename rake_completion.zsh => lib/rake_completion.zsh (100%) diff --git a/aliases.zsh b/lib/aliases.zsh similarity index 100% rename from aliases.zsh rename to lib/aliases.zsh diff --git a/colors.zsh b/lib/colors.zsh similarity index 100% rename from colors.zsh rename to lib/colors.zsh diff --git a/completion.zsh b/lib/completion.zsh similarity index 100% rename from completion.zsh rename to lib/completion.zsh diff --git a/functions.zsh b/lib/functions.zsh similarity index 100% rename from functions.zsh rename to lib/functions.zsh diff --git a/git.zsh b/lib/git.zsh similarity index 100% rename from git.zsh rename to lib/git.zsh diff --git a/grep.zsh b/lib/grep.zsh similarity index 100% rename from grep.zsh rename to lib/grep.zsh diff --git a/history.zsh b/lib/history.zsh similarity index 100% rename from history.zsh rename to lib/history.zsh diff --git a/key-bindings.zsh b/lib/key-bindings.zsh similarity index 100% rename from key-bindings.zsh rename to lib/key-bindings.zsh diff --git a/prompt.zsh b/lib/prompt.zsh similarity index 100% rename from prompt.zsh rename to lib/prompt.zsh diff --git a/rake_completion.zsh b/lib/rake_completion.zsh similarity index 100% rename from rake_completion.zsh rename to lib/rake_completion.zsh diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index b931f55..40c73cb 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -2,4 +2,4 @@ # Load all of the config files in ~/oh-my-zsh that end in .zsh # TIP: Add files you don't want in git to .gitignore -for config_file ($ZSH/*.zsh) source $config_file +for config_file ($ZSH/lib/*.zsh) source $config_file