Commit Graph

3147 Commits

Author SHA1 Message Date
Robby Russell
e2cd26c72e Merge branch 'joerc' of https://github.com/sargas/oh-my-zsh into sargas-joerc 2010-11-19 10:48:07 -08:00
Robby Russell
8bda5d185a Merge branch 'master' of https://github.com/Bira/oh-my-zsh into Bira-master 2010-11-19 10:42:55 -08:00
Robby Russell
580eda4dca Merge branch 'master' of https://github.com/FedyashevNikita/oh-my-zsh into FedyashevNikita-master 2010-11-19 10:41:11 -08:00
Claus Witt
bdaf872ce6 Removed the echo statement - no need for that. 2010-11-17 11:17:03 +01:00
Fedyashev Nikita
6dbfdd9e31 improved formatting; redundant attributes deleted 2010-11-15 15:18:58 -05:00
Fedyashev Nikita
ea274ab90c fixed formatting; dead code deleted 2010-11-15 14:56:01 -05:00
Fedyashev Nikita
148c14e4f7 vagrant plugin autocompletion - initial version 2010-11-15 14:46:15 -05:00
NanoTech
2a203b558f themes/nanotech: Use the new built-in zsh color variables. 2010-11-14 16:53:13 -06:00
Ubiratan Pires Alberton
72d7c0363c Added my own theme, based on macovsky-ruby and funky 2010-11-14 10:21:28 -02:00
Claus Witt
9db8042c46 Added phing plugin 2010-11-09 14:56:26 +01:00
Florian Walch
b1320095fd Merge remote branch 'origin/master' into gpg-agent 2010-11-04 14:04:47 +01:00
gwjo
9465ba0de4 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
2010-11-03 16:57:15 -04:00
Tom Stuart
ab170c38ea Fix lighthouse plugin error message 2010-11-02 11:26:49 +00:00
Joseph Jon Booker
baa46b39e3 command-not-found package in ubuntu 2010-10-25 16:02:16 -05:00
steeef
4ff0136079 merge from master 2010-10-22 11:34:52 -07:00
steeef
d2bfdc2d89 merge theme fixes from master 2010-10-22 10:51:58 -07:00
steeef
810b8f5ce8 merge with master 2010-10-22 10:42:49 -07:00
steeef
9b6dd1cd48 merge with master 2010-10-22 10:39:33 -07:00
NanoTech
68f893cbe0 Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh 2010-10-19 15:39:27 -06:00
Florian Walch
60b560fc9a Added gpg-agent plugin
Based on ssh-agent plugin.
2010-10-15 16:50:39 +02:00
Roman Kamyk
fb6fddda37 Merge branch 'master' of http://github.com/robbyrussell/oh-my-zsh 2010-10-15 14:49:23 +02:00
Florian Walch
4e433eb6bb Added own theme (based on robbyrussell) 2010-10-15 11:05:47 +02:00
Brandon Philips
8b4858b664 themes: philips customize git/ls for developers
- Customize LS_COLORS for developers working on C code bases like the
  Kernel.
- Add a * to the dirty prompt. Missed this accidently. Oops.

Signed-off-by: Brandon Philips <brandon@ifup.org>
2010-10-09 17:43:38 -07:00
Sven Lito
dc12853b0c merging in changes from robby's repo 2010-10-09 19:11:07 +01:00
Sven Lito
8bef74081e Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh 2010-10-09 18:56:51 +01:00
Sven Lito
425b0ef89f bugfix - moved gem info 2010-10-09 18:38:01 +01:00
Robby Russell
df126ef5ba Merge branch 'master' of http://github.com/svnlto/oh-my-zsh into svnlto-master 2010-10-09 10:06:49 -07:00
Robby Russell
d1c8ef46e0 Merge branch 'master' of http://github.com/philtr/oh-my-zsh into philtr-master 2010-10-09 09:58:20 -07:00
Robby Russell
69e611e2a9 Merge branch 'philips-theme' of http://github.com/philips/oh-my-zsh into philips-philips-theme 2010-10-09 09:57:37 -07:00
Robby Russell
7ab4d30fe1 Merge branch 'title-fix' of http://github.com/philips/oh-my-zsh into philips-title-fix 2010-10-09 09:55:52 -07:00
Irakli Gozalishvili
061ea5c7c9 changeing unicode characters that were causing issues 2010-10-09 18:06:00 +02:00
Sven Lito
210c76c35b leaving out subcommands for now 2010-10-09 15:29:28 +01:00
Sven Lito
fcd88edfb3 adding comment and URL to github gem 2010-10-09 15:18:35 +01:00
Sven Lito
dfbed8fd98 added git log incl. stats for the past 5 commits 2010-10-09 15:03:08 +01:00
Sven Lito
249fe1471c adding github plugin 2010-10-09 14:29:24 +01:00
Brandon Philips
df1e305736 themes: add philips theme
Theme based on clean that is more suitable for white background
terminals.

Signed-off-by: Brandon Philips <brandon@ifup.org>
2010-10-08 22:59:22 -07:00
Brandon Philips
aab235f612 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
2010-10-08 22:55:09 -07:00
Irakli Gozalishvili
deb0f7478b Fixing some minor redrew issue 2010-10-09 02:16:10 +02:00
Irakli Gozalishvili
b6dde1e8cf Adding new gozilla theme 2010-10-09 01:49:35 +02:00
Irakli Gozalishvili
8059c0727a Improving git plugin so it can display much more data. 2010-10-09 01:48:23 +02:00
Phillip Ridlen
d53d0eac07 Add cloud.zsh-theme 2010-10-05 17:06:08 -05:00
steeef
c6b339f532 merge master 2010-10-04 22:08:38 -07:00
steeef
6d5e4eaebc use 256 colors, if available 2010-10-04 18:05:01 -07:00
atom smith
ba9ae6a1e5 should have newline at end of file. 2010-10-03 17:42:57 -04:00
atom smith
f2f49f9571 adding my zsh-theme 2010-10-03 17:41:45 -04:00
Roman Kamyk
f294eeb571 added rkj theme - xion-chiamiov-plus + hg from thomasjbradley 2010-10-02 19:49:16 +02:00
steeef
7405f5d9ff fix untracked files checking 2010-10-01 14:40:06 -07:00
steeef
6fcf9393c3 merge steeef.zsh-theme from master (removed submodule check) 2010-10-01 14:17:13 -07:00
steeef
7fb0b210e8 merge steeef.zsh-theme from master 2010-10-01 14:11:53 -07:00
Jake Bell
541da0c9d1 Removing capistrano aliases/functions from rails plugin (since cap is not rails-specific). 2010-10-01 14:15:52 -05:00