Browse Source

Moving all zsh config options into a lib/ subdirectory to make way for some upcoming changes to directory structure and configuration options

Robby Russell 14 years ago
parent
commit
8debd097fb
11 changed files with 1 additions and 1 deletions
  1. 0 0
      lib/aliases.zsh
  2. 0 0
      lib/colors.zsh
  3. 0 0
      lib/completion.zsh
  4. 0 0
      lib/functions.zsh
  5. 0 0
      lib/git.zsh
  6. 0 0
      lib/grep.zsh
  7. 0 0
      lib/history.zsh
  8. 0 0
      lib/key-bindings.zsh
  9. 0 0
      lib/prompt.zsh
  10. 0 0
      lib/rake_completion.zsh
  11. 1 1
      oh-my-zsh.sh

aliases.zsh → lib/aliases.zsh


colors.zsh → lib/colors.zsh


completion.zsh → lib/completion.zsh


functions.zsh → lib/functions.zsh


git.zsh → lib/git.zsh


grep.zsh → lib/grep.zsh


history.zsh → lib/history.zsh


key-bindings.zsh → lib/key-bindings.zsh


prompt.zsh → lib/prompt.zsh


rake_completion.zsh → lib/rake_completion.zsh


+ 1 - 1
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