summaryrefslogtreecommitdiff
path: root/oh-my-zsh.sh
AgeCommit message (Collapse)Author
2013-04-23Merge pull request #1569 from ZeroKnight/masterRobby Russell
Better custom theme loading
2013-04-07005d967dc4e879f304607a706ccd18886e630dc1Robby Russell
2013-01-30Better custom theme loadingAlex
oh-my-zsh.sh now also checks for $ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme when attempting to load a theme. This way custom themes can be a bit more organized in the 'custom' dir
2012-12-05Unset `config_file` variable in oh-my-zsh.shLarry Lv
`config_file` variable will mess up with `cd` auto-complete command. eg. I have a local dir named `Code`, and when I type `cd co<Tab>`, config_file will show up, and doesn't make any sense...
2012-10-30Expand for-loop so that it works under Snow Leopard Terminal.app.Hok Shun Poon
2012-05-23Load symlink custom filesnatsumesou
`(.)` search only real files. The deletion of it enables searching symlink *.zsh files
2012-05-06Load themes from `$ZSH_CUSTOM` instead of `$ZSH/custom`Jim Myhrberg
This seems like a simple oversight, everything else uses `$ZSH_CUSTOM` rather than `$ZSH/custom`.
2012-05-06Suppress "zsh: no matches found" error when $ZSH_CUSTOM has no filesJim Myhrberg
The addition of `(.N)` enables the `NULL_GLOB` option which suppresses the error output in question. Reference: http://www.zsh.org/mla/users/2004/msg00621.html
2012-01-16fixing #812: adding plugins w/o plugin.zsh file to fpath.Arbo von Monkiewitsch
2011-12-26Merge pull request #618 from fceccon/custom-themeRobby Russell
Use a custom version of a theme if the user has it
2011-11-16Moved ZSH_CUSTOM declaration before fpath is setChristian Höltje
* also normalized style to match the guide.
2011-11-16set fpath correctly for custom pluginsChristian Höltje
Custom plugins weren't being added to the fpath correctly.
2011-10-10Merge pull request #554 from toolbear/549-fix-auto-upgradeRobby Russell
Fix auto upgrade failure from non-exported ZSH env var
2011-09-20First search in the custom folder for the themefceccon
2011-08-17Fix auto upgrade failure from non-exported ZSH env varTim Taylor
Fixes #549. Specify ZSH=$ZSH explicitly when invoking the auto update scripts.
2011-08-04added option of setting another path to custom plugins and filesSune Kibsgaard Pedersen
just set ZSH_CUSTOM in your .zshrc, if not set oh-my-zsh.sh will use the default custom dir in the repository
2011-06-15When the theme choice is left out, oh-my-zsh will not try to load itMarius Ghita
2011-06-04Fix bug from Pull request #395Michael Komitee
#395 broke oh-my-zsh for users who disable check-for-updates
2011-06-04[upgrade] before init (no reload needed unless oh-my-zsh.sh has been modified)vguerci
2011-05-26Adding ability to override plugins from the custom directory.Jake Bell
2011-05-25Merge pull request #351 from GutenLinux/masterRobby Russell
add custom completion support
2011-05-24Fix to random theme selectionCasey Watson
- themes array is 1-based - theme files names are located in indicies 1 through N inclusive - this resolves an issue where you would occasionally see: "no such file or directory. Random theme '' loaded..."
2011-05-22add custom completion supportGuten
2011-04-29Merge branch 'master' of github.com:robbyrussell/oh-my-zshRobby Russell
2011-04-29Feature: Random themes now supported. Just set your theme to 'random' and ↵Robby Russell
it'll load a different theme each time oh-my-zsh is started. Closes #309
2011-04-28Move sourcing of custom to below pluginsPat Regan
2011-04-12Minor reformattingPat Regan
2011-04-12Moved the plugin fpath loop and compinit so they happen before custom ↵Pat Regan
scripts are loaded.
2011-04-12Optimize plugin loading so that only one call to compinit is requiredPat Regan
2011-04-12Moved compinit call back to oh-my-zsh.sh, after plugins are loadedPat Regan
2011-04-08Removed commented out code.Pat Regan
2011-04-08Moved the single compinit call from oh-my-zsh.sh to lib/completion.zshPat Regan
2011-04-08Replace redundant calls to compinit with a single call.Pat Regan
2011-01-08Postponing sourcing of the theme until after local customizationsMichael Komitee
2010-09-30Reorganizing plugins so that each plugin has it's own directory now so that ↵Robby Russell
any plugin-specific functions can be bundled within there.
2010-09-26unset config_file is uselessTomas Kramar
2010-06-03Initial implementation of a new plugin system, so that people can managed ↵Robby Russell
which aliases/functions they want.
2010-05-06Unsetting config_file after loading configRobby Russell
2009-12-13Based on a suggestion from robbyrussel, using env for greater compatibility.johnmaxwelliv
2009-12-12Instead of using the user's standard shell, this script should be run using ↵johnmaxwelliv
zsh, since that was the shell it was written for. On my machine changes to my default shell only take effect when I log out and then long in again. Plus, it's nice for people to be able to try oh-my-zsh out even if zsh isn't their default shell right? :-)
2009-10-26adding homebrew completions - and a function dirErik Kastner
2009-10-01run update check *after* running custom configuration scripts.Jon Evans
This means we are running it after $PATH has potentially been set up, which means it's more likely that commands like "git" will be found
2009-09-23Moving some example files into custom/Robby Russell
2009-09-23Moving all zsh config options into a lib/ subdirectory to make way for some ↵Robby Russell
upcoming changes to directory structure and configuration options
2009-09-01Trying out some zsh-fu. Using the for x (*.zsh) source approachRobby Russell
2009-09-01Moving the loading of all .zsh files into a different file so that we can ↵Robby Russell
remove zshrc from the repository