gitextract_6idm_390/ ├── .gitignore ├── README.textile ├── functions/ │ └── _hg ├── lib/ │ ├── aliases.zsh │ ├── completion.zsh │ ├── correction.zsh │ ├── directories.zsh │ ├── django.zsh │ ├── edit-command-line.zsh │ ├── functions.zsh │ ├── git.zsh │ ├── history.zsh │ ├── key-bindings.zsh │ ├── misc.zsh │ ├── python.zsh │ ├── redis.zsh │ ├── spectrum.zsh │ ├── supervisord.zsh │ ├── termsupport.zsh │ └── theme-and-appearance.zsh ├── log/ │ └── .easter-egg ├── oh-my-zsh.sh ├── plugins/ │ ├── ant/ │ │ └── ant.plugin.zsh │ ├── apache2-macports/ │ │ └── apache2-macports.plugin.zsh │ ├── archlinux/ │ │ └── archlinux.plugin.zsh │ ├── autojump/ │ │ └── autojump.plugin.zsh │ ├── brew/ │ │ ├── _brew │ │ └── brew.plugin.zsh │ ├── bundler/ │ │ └── bundler.plugin.zsh │ ├── cake/ │ │ └── cake.plugin.zsh │ ├── cap/ │ │ └── cap.plugin.zsh │ ├── cloudapp/ │ │ ├── cloudapp.plugin.zsh │ │ └── cloudapp.rb │ ├── command-coloring/ │ │ └── command-coloring.plugin.zsh │ ├── command-not-found/ │ │ └── command-not-found.plugin.zsh │ ├── compleat/ │ │ └── compleat.plugin.zsh │ ├── cpanm/ │ │ └── _cpanm │ ├── deb/ │ │ └── deb.plugin.zsh │ ├── debian/ │ │ └── debian.plugin.zsh │ ├── dirpersist/ │ │ └── dirpersist.plugin.zsh │ ├── django/ │ │ └── django.plugin.zsh │ ├── extract/ │ │ ├── _extract │ │ └── extract.plugin.zsh │ ├── fabric/ │ │ └── fabric.plugin.zsh │ ├── gas/ │ │ └── _gas │ ├── gem/ │ │ └── _gem │ ├── git/ │ │ └── git.plugin.zsh │ ├── git-flow/ │ │ └── git-flow.plugin.zsh │ ├── github/ │ │ ├── _github │ │ └── github.plugin.zsh │ ├── gpg-agent/ │ │ └── gpg-agent.plugin.zsh │ ├── heroku/ │ │ └── _heroku │ ├── history-substring-search/ │ │ ├── README │ │ ├── history-substring-search.plugin.zsh │ │ └── history-substring-search.zsh │ ├── kate/ │ │ └── kate.plugin.zsh │ ├── knife/ │ │ └── _knife │ ├── lein/ │ │ └── lein.plugin.zsh │ ├── lighthouse/ │ │ └── lighthouse.plugin.zsh │ ├── lol/ │ │ └── lol.plugin.zsh │ ├── macports/ │ │ ├── _port │ │ └── macports.plugin.zsh │ ├── mysql-macports/ │ │ └── mysql-macports.plugin.zsh │ ├── node/ │ │ └── node.plugin.zsh │ ├── npm/ │ │ └── _npm │ ├── osx/ │ │ ├── _man-preview │ │ └── osx.plugin.zsh │ ├── perl/ │ │ └── perl.plugin.zsh │ ├── phing/ │ │ └── phing.plugin.zsh │ ├── pip/ │ │ └── _pip │ ├── pow/ │ │ └── pow.plugin.zsh │ ├── powder/ │ │ └── _powder │ ├── rails/ │ │ └── rails.plugin.zsh │ ├── rails3/ │ │ └── rails3.plugin.zsh │ ├── redis-cli/ │ │ └── _redis-cli │ ├── ruby/ │ │ └── ruby.plugin.zsh │ ├── rvm/ │ │ ├── _rvm │ │ └── rvm.plugin.zsh │ ├── ssh-agent/ │ │ └── ssh-agent.plugin.zsh │ ├── svn/ │ │ └── svn.plugin.zsh │ ├── taskwarrior/ │ │ ├── _task │ │ └── taskwarrior.plugin.zsh │ ├── textmate/ │ │ └── textmate.plugin.zsh │ ├── thor/ │ │ └── _thor │ ├── vagrant/ │ │ └── _vagrant │ ├── vi-mode/ │ │ └── vi-mode.plugin.zsh │ └── yum/ │ └── yum.plugin.zsh ├── templates/ │ └── zshrc.zsh-template ├── themes/ │ ├── Soliah.zsh-theme │ ├── afowler.zsh-theme │ ├── alanpeabody.zsh-theme │ ├── arrow.zsh-theme │ ├── aussiegeek.zsh-theme │ ├── awesomepanda.zsh-theme │ ├── bira.zsh-theme │ ├── blinks.zsh-theme │ ├── candy.zsh-theme │ ├── clean.zsh-theme │ ├── cloud.zsh-theme │ ├── cypher.zsh-theme │ ├── dallas.zsh-theme │ ├── darkblood.zsh-theme │ ├── daveverwer.zsh-theme │ ├── dieter.zsh-theme │ ├── dogenpunk.zsh-theme │ ├── dpoggi.zsh-theme │ ├── dst.zsh-theme │ ├── dstufft.zsh-theme │ ├── duellj.zsh-theme │ ├── eastwood.zsh-theme │ ├── edvardm.zsh-theme │ ├── evan.zsh-theme │ ├── example.zsh-theme │ ├── fishy.zsh-theme │ ├── flazz.zsh-theme │ ├── fletcherm.zsh-theme │ ├── frisk.zsh-theme │ ├── funky.zsh-theme │ ├── fwalch.zsh-theme │ ├── gallifrey.zsh-theme │ ├── gallois.zsh-theme │ ├── garyblessington.zsh-theme │ ├── gentoo.zsh-theme │ ├── geoffgarside.zsh-theme │ ├── gozilla.zsh-theme │ ├── humza.zsh-theme │ ├── imajes.zsh-theme │ ├── jbergantine.zsh-theme │ ├── jispwoso.zsh-theme │ ├── jnrowe.zsh-theme │ ├── jonathan.zsh-theme │ ├── josh.zsh-theme │ ├── jreese.zsh-theme │ ├── jtriley.zsh-theme │ ├── juanghurtado.zsh-theme │ ├── kardan.zsh-theme │ ├── kennethreitz.zsh-theme │ ├── kolo.zsh-theme │ ├── kphoen.zsh-theme │ ├── lambda.zsh-theme │ ├── linuxonly │ ├── lukerandall.zsh-theme │ ├── macovsky-ruby.zsh-theme │ ├── macovsky.zsh-theme │ ├── maran.zsh-theme │ ├── mattcable.zsh-theme │ ├── mgutz.zsh-theme │ ├── mikeh.zsh-theme │ ├── miloshadzic.zsh-theme │ ├── minimal.zsh-theme │ ├── mrtazz.zsh-theme │ ├── murilasso.zsh-theme │ ├── muse.zsh-theme │ ├── nanotech.zsh-theme │ ├── nebirhos.zsh-theme │ ├── nicoulaj.zsh-theme │ ├── obraun.zsh-theme │ ├── philips.zsh-theme │ ├── pmcgee.zsh-theme │ ├── prose.zsh-theme │ ├── re5et.zsh-theme │ ├── rgm.zsh-theme │ ├── risto.zsh-theme │ ├── rixius.zsh-theme │ ├── robbyrussell.zsh-theme │ ├── simple.zsh-theme │ ├── skaro.zsh-theme │ ├── smt.zsh-theme │ ├── sorin.zsh-theme │ ├── sporty_256.zsh-theme │ ├── steeef.zsh-theme │ ├── sunaku.zsh-theme │ ├── sunrise.zsh-theme │ ├── superjarin.zsh-theme │ ├── takashiyoshida.zsh-theme │ ├── terminalparty.zsh-theme │ ├── theunraveler.zsh-theme │ ├── tjkirch.zsh-theme │ ├── tonotdo.zsh-theme │ ├── trapd00r.zsh-theme │ ├── wedisagree.zsh-theme │ ├── wezm+.zsh-theme │ ├── wezm.zsh-theme │ ├── xiong-chiamiov-plus.zsh-theme │ └── xiong-chiamiov.zsh-theme └── tools/ ├── check_for_upgrade.sh ├── install.sh ├── uninstall.sh └── upgrade.sh