Robby Russell
9a29895f63
Merge branch 'master' of https://github.com/dannytatom/oh-my-zsh into dannytatom-master
14 years ago
Robby Russell
7c22ee772d
Merge branch 'master' of https://github.com/flazz/oh-my-zsh into flazz-master
14 years ago
Robin Ramael
a42aea147d
Added svn info in prompt with plugin.
...
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).
14 years ago
Robin Ramael
0608baceb5
Made git ignore everything in custom, not only the .zsh files.
14 years ago
Francesco Lazzarino
74b0664856
theme based on afowler with vi-mode support
14 years ago
Danny Tatom
515a86ef79
Added lambda theme
14 years ago
Robby Russell
ae13d5d346
Merge branch 'git' of https://github.com/papercavalier/oh-my-zsh into papercavalier-git
14 years ago
Robby Russell
21273bba1c
Merge branch 'master' of https://github.com/derekprior/oh-my-zsh into derekprior-master
14 years ago
Robby Russell
c4681bb211
Merge branch 'rails3' of https://github.com/papercavalier/oh-my-zsh into papercavalier-rails3
14 years ago
Suraj N. Kurapati
6f0001c579
add "fishy" theme to emulate Fish shell's prompt
14 years ago
Derek Prior
5f0afcdd3c
Added function to mkdir and immediately change to it
14 years ago
Hakan Ensari
088fae93f2
Typo
14 years ago
Hakan Ensari
14628eef37
Removed remote_console. It doesn't handle rvm, capistrano, and so on.
14 years ago
Hakan Ensari
7eeb7d5ea7
A rails3 plugin based on the rails plugin
14 years ago
Hakan Ensari
f89eb82987
Aliased git checkout as `gco`
14 years ago
Robby Russell
7a1dd5a172
Merge branch 'kardan' of https://github.com/kardan/oh-my-zsh into kardan-kardan
14 years ago
Daniel Karlsson
2b5d7e75f1
Updated the PROMT.
14 years ago
Daniel Karlsson
77035debe7
Added new kardan theme.
14 years ago
Igor Vinokurov
5b5f503040
gentoo-like theme w/ git_prompt_info
14 years ago
Robby Russell
217f395c35
Merge branch 'fix-lighthouse-error-message' of https://github.com/mortice/oh-my-zsh into mortice-fix-lighthouse-error-message
14 years ago
Robby Russell
40a6063f20
Merge branch 'completions' of https://github.com/gwjo/oh-my-zsh into gwjo-completions
14 years ago
Robby Russell
11dbba1bad
Merge branch 'joerc' of https://github.com/sargas/oh-my-zsh into sargas-joerc
14 years ago
Robby Russell
ae551968ac
Merge branch 'master' of https://github.com/Bira/oh-my-zsh into Bira-master
14 years ago
Robby Russell
0b63e81d43
Merge branch 'master' of https://github.com/FedyashevNikita/oh-my-zsh into FedyashevNikita-master
14 years ago
Fedyashev Nikita
0ad1d6654d
improved formatting; redundant attributes deleted
14 years ago
Fedyashev Nikita
e0c6769c93
fixed formatting; dead code deleted
14 years ago
Fedyashev Nikita
2a5651f012
vagrant plugin autocompletion - initial version
14 years ago
Claus Witt
b21eebe623
Added phing plugin
14 years ago
gwjo
86ca51a6b7
Completion fixes
...
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
14 years ago
Tom Stuart
a2be11e42d
Fix lighthouse plugin error message
14 years ago
Joseph Jon Booker
1d78c87604
command-not-found package in ubuntu
14 years ago
Sven Lito
d89d3a2703
merging in changes from robby's repo
14 years ago
Sven Lito
52f936d4dc
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
14 years ago
Sven Lito
95da4abe98
bugfix - moved gem info
14 years ago
Robby Russell
5d369be8b5
Merge branch 'master' of http://github.com/svnlto/oh-my-zsh into svnlto-master
14 years ago
Robby Russell
6eca4415ec
Merge branch 'master' of http://github.com/philtr/oh-my-zsh into philtr-master
14 years ago
Robby Russell
67c955a798
Merge branch 'philips-theme' of http://github.com/philips/oh-my-zsh into philips-philips-theme
14 years ago
Robby Russell
9477f708b5
Merge branch 'title-fix' of http://github.com/philips/oh-my-zsh into philips-title-fix
14 years ago
Irakli Gozalishvili
ff33d69d00
changeing unicode characters that were causing issues
14 years ago
Sven Lito
c3e72870c8
leaving out subcommands for now
14 years ago
Sven Lito
2865b56b13
adding comment and URL to github gem
14 years ago
Sven Lito
220d953396
added git log incl. stats for the past 5 commits
14 years ago
Sven Lito
0348dc0721
adding github plugin
14 years ago
Brandon Philips
e0789782bc
themes: add philips theme
...
Theme based on clean that is more suitable for white background
terminals.
Signed-off-by: Brandon Philips <brandon@ifup.org>
14 years ago
Brandon Philips
e7ddaaa2b0
functions: fix title() to not match any $TERM
...
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
14 years ago
Irakli Gozalishvili
3ce9bb3ef0
Fixing some minor redrew issue
14 years ago
Irakli Gozalishvili
c4322f2955
Adding new gozilla theme
14 years ago
Irakli Gozalishvili
aa2f553023
Improving git plugin so it can display much more data.
14 years ago
Phillip Ridlen
287585dd65
Add cloud.zsh-theme
14 years ago
Jake Bell
2c1236e047
Removing capistrano aliases/functions from rails plugin (since cap is not rails-specific).
14 years ago