Commit 39f8b30d authored by Robby Russell's avatar Robby Russell
Browse files

Loading all files in /Users/robbyrussell/oh-my-zsh that end in .zsh instead of...

Loading all files in /Users/robbyrussell/oh-my-zsh that end in .zsh instead of specifying them manually
parent 4e2b71ba
...@@ -2,19 +2,9 @@ export PAGER=less ...@@ -2,19 +2,9 @@ export PAGER=less
export ZSH=$HOME/oh-my-zsh export ZSH=$HOME/oh-my-zsh
export LC_CTYPE=en_US.UTF-8 export LC_CTYPE=en_US.UTF-8
# TODO: Refactor this sometimes soon... # Load all of the config files in ~/oh-my-zsh that end in .zsh
source $ZSH/colors.zsh # TIP: Add files you don't want in git to .gitignore
source $ZSH/aliases.zsh for i in $ZSH/*zsh; do source $i; done;
source $ZSH/completion.zsh
source $ZSH/rake_completion.zsh
source $ZSH/functions.zsh
source $ZSH/git.zsh
source $ZSH/history.zsh
source $ZSH/grep.zsh
source $ZSH/prompt.zsh
# Uncomment if you have a projects.zsh file
# source $ZSH/projects.zsh
# Directory stuff. # Directory stuff.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment