Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-14 | Merge branch 'master' of https://github.com/sunaku/oh-my-zsh | Robby Russell | |
2011-01-14 | Merge branch 'master' of https://github.com/dannytatom/oh-my-zsh into ↵ | Robby Russell | |
dannytatom-master | |||
2011-01-14 | Merge branch 'master' of https://github.com/flazz/oh-my-zsh into flazz-master | Robby Russell | |
2011-01-10 | Added svn info in prompt with plugin. | Robin Ramael | |
If the svn plugin is used, svn info (repo name and wether the repo is dirty) is displayed in the prompt like with git. Just lke with git, the colors can be manipulated with variables (see awesomepanda theme for example). | |||
2011-01-10 | Made git ignore everything in custom, not only the .zsh files. | Robin Ramael | |
2011-01-10 | theme based on afowler with vi-mode support | Francesco Lazzarino | |
2011-01-09 | Added lambda theme | Danny Tatom | |
2011-01-08 | avoid forking subshell to test if user is root | Suraj N. Kurapati | |
2011-01-08 | Merge branch 'git' of https://github.com/papercavalier/oh-my-zsh into ↵ | Robby Russell | |
papercavalier-git | |||
2011-01-08 | Merge branch 'master' of https://github.com/derekprior/oh-my-zsh into ↵ | Robby Russell | |
derekprior-master | |||
2011-01-08 | Merge branch 'rails3' of https://github.com/papercavalier/oh-my-zsh into ↵ | Robby Russell | |
papercavalier-rails3 | |||
2010-12-28 | add "fishy" theme to emulate Fish shell's prompt | Suraj N. Kurapati | |
2010-12-21 | Added function to mkdir and immediately change to it | Derek Prior | |
2010-12-20 | Typo | Hakan Ensari | |
2010-12-20 | Removed remote_console. It doesn't handle rvm, capistrano, and so on. | Hakan Ensari | |
2010-12-20 | A rails3 plugin based on the rails plugin | Hakan Ensari | |
2010-12-20 | Aliased git checkout as `gco` | Hakan Ensari | |
2010-12-07 | Merge branch 'kardan' of https://github.com/kardan/oh-my-zsh into kardan-kardan | Robby Russell | |
2010-12-03 | Updated the PROMT. | Daniel Karlsson | |
2010-12-03 | Added new kardan theme. | Daniel Karlsson | |
2010-12-02 | gentoo-like theme w/ git_prompt_info | Igor Vinokurov | |
2010-11-19 | Merge branch 'fix-lighthouse-error-message' of ↵ | Robby Russell | |
https://github.com/mortice/oh-my-zsh into mortice-fix-lighthouse-error-message | |||
2010-11-19 | Merge branch 'completions' of https://github.com/gwjo/oh-my-zsh into ↵ | Robby Russell | |
gwjo-completions | |||
2010-11-19 | Merge branch 'joerc' of https://github.com/sargas/oh-my-zsh into sargas-joerc | Robby Russell | |
2010-11-19 | Merge branch 'master' of https://github.com/Bira/oh-my-zsh into Bira-master | Robby Russell | |
2010-11-19 | Merge branch 'master' of https://github.com/FedyashevNikita/oh-my-zsh into ↵ | Robby Russell | |
FedyashevNikita-master | |||
2010-11-15 | improved formatting; redundant attributes deleted | Fedyashev Nikita | |
2010-11-15 | fixed formatting; dead code deleted | Fedyashev Nikita | |
2010-11-15 | vagrant plugin autocompletion - initial version | Fedyashev Nikita | |
2010-11-14 | Added my own theme, based on macovsky-ruby and funky | Ubiratan Pires Alberton | |
2010-11-09 | Added phing plugin | Claus Witt | |
2010-11-03 | Completion fixes | gwjo | |
Use /etc/hosts in addtion to $HOME/.ssh/known_hosts as the source for hostname completion Turn on completion caching to speed up certain comands When completing usernames, don't include system accounts by default | |||
2010-11-02 | Fix lighthouse plugin error message | Tom Stuart | |
2010-10-25 | command-not-found package in ubuntu | Joseph Jon Booker | |
2010-10-09 | merging in changes from robby's repo | Sven Lito | |
2010-10-09 | Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh | Sven Lito | |
2010-10-09 | bugfix - moved gem info | Sven Lito | |
2010-10-09 | Merge branch 'master' of http://github.com/svnlto/oh-my-zsh into svnlto-master | Robby Russell | |
2010-10-09 | Merge branch 'master' of http://github.com/philtr/oh-my-zsh into philtr-master | Robby Russell | |
2010-10-09 | Merge branch 'philips-theme' of http://github.com/philips/oh-my-zsh into ↵ | Robby Russell | |
philips-philips-theme | |||
2010-10-09 | Merge branch 'title-fix' of http://github.com/philips/oh-my-zsh into ↵ | Robby Russell | |
philips-title-fix | |||
2010-10-09 | changeing unicode characters that were causing issues | Irakli Gozalishvili | |
2010-10-09 | leaving out subcommands for now | Sven Lito | |
2010-10-09 | adding comment and URL to github gem | Sven Lito | |
2010-10-09 | added git log incl. stats for the past 5 commits | Sven Lito | |
2010-10-09 | adding github plugin | Sven Lito | |
2010-10-08 | themes: add philips theme | Brandon Philips | |
Theme based on clean that is more suitable for white background terminals. Signed-off-by: Brandon Philips <brandon@ifup.org> | |||
2010-10-08 | functions: fix title() to not match any $TERM | Brandon Philips | |
On my linux virtual terminals, where TERM="linux", I was getting annoying output that was messing up my prompt. It turns out the title function was always matching on the elif statement for xterm/rxvt no matter what and the linux vt doesn't know what to do with the title special control sequence and thus was printing out garbage. Through experimentation I figured out that the || inside of the [[ ]] did not work: export TERM=linux $ if [[ $TERM =~ "^xterm" || $TERM == "rxvt" ]]; then echo $TERM; fi linux $ if [[ $TERM =~ "^xterm" ]] || [[ $TERM == "rxvt" ]]; then echo $TERM; fi Signed-off-by: Brandon Philips <brandon@ifup.org> openSUSE running zsh 4.3.10 | |||
2010-10-09 | Fixing some minor redrew issue | Irakli Gozalishvili | |
2010-10-09 | Adding new gozilla theme | Irakli Gozalishvili | |