diff options
author | natsumesou <natsumesouxx@gmail.com> | 2012-05-23 13:49:21 +0900 |
---|---|---|
committer | natsumesou <natsumesouxx@gmail.com> | 2012-05-23 13:49:21 +0900 |
commit | 61c39b50390a7869f22001a6cd65b7e8cd977e88 (patch) | |
tree | 2c6a6dd59172c83acb6fbe77022e4b907907f7f7 /oh-my-zsh.sh | |
parent | 3fdaf26006e3f075e7ccefd2721295b8bc5172f9 (diff) | |
download | zsh-61c39b50390a7869f22001a6cd65b7e8cd977e88.tar.gz zsh-61c39b50390a7869f22001a6cd65b7e8cd977e88.tar.bz2 zsh-61c39b50390a7869f22001a6cd65b7e8cd977e88.zip |
Load symlink custom files
`(.)` search only real files.
The deletion of it enables searching symlink *.zsh files
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r-- | oh-my-zsh.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index c2b6049cb..ddef1ad6c 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -51,7 +51,7 @@ for plugin ($plugins); do done # Load all of your custom configurations from custom/ -for config_file ($ZSH_CUSTOM/*.zsh(.N)) source $config_file +for config_file ($ZSH_CUSTOM/*.zsh(N)) source $config_file # Load the theme if [ "$ZSH_THEME" = "random" ] |