Commit Graph

7075 Commits

Author SHA1 Message Date
2a1c9ff340 add ssh-agent option to set default lifetime of identities
By default, ssh-agent stores identities forever. It has an option to
set a maximum lifetime for identites (useful to expire passphrase protected
keys). Allow this option to be set using:

zstyle :omz:plugins:ssh-agent lifetime <time>
2013-03-16 00:06:46 -04:00
3826c7bf85 allow setting a custom HISTFILE before oh-my-zsh is loaded 2013-03-15 22:07:47 +01:00
4c8bba57ac Fix whitespace
That's what I get for using GitHub text editor and not checking tabs.
2013-03-13 22:51:14 -05:00
1cfd813f79 last-working-dir: Use >! to overwrite $cache_file
Use ">!" to overwrite $cache_file in case noclobber is set. 
When noclobber is set, zsh will not allow the use of ">" to overwrite
the contents of a file. Instead, it displays a "file exists" error.
By using ">!" instead, we tell zsh to overwrite the file without
complaining.
2013-03-13 22:48:28 -05:00
56e835426b fix git_prompt_status() to not say the repository has untracked files all the time 2013-03-14 00:31:14 +01:00
ac6f1a045c Update to latest per-directory-history 2013-03-13 13:07:32 -04:00
6c6072c492 Modified to use full parameter as newer versions of base64 uses lowercase D 2013-03-13 11:21:43 +00:00
7903f51856 Fix git dirty status in dallas.zsh-theme 2013-03-13 12:36:48 +04:00
y.s
55c6fd5c38 opt: Optimize the color scheme. Add some basic comments. 2013-03-13 15:55:35 +08:00
4bf174c38b Autocomplete composer default methods if composer.json is not available
This plugin currently doesn't autocomplete composer commands if there is no composer.json in the current dir. However, the commands create-project, init, search, selfupdate and show are still useful without a composer.json!
2013-03-13 04:06:16 +01:00
bdf4f5a347 Allow ":" and "-" characters in phing tasks.
Tasks that included hyphens or colons were being excluded from
completion.  This improves the usage for this.
2013-03-12 13:23:34 -04:00
300f94cb0e Use [ -nt ] instead of stat -f%m to check cache files. 2013-03-12 13:23:30 -04:00
07838055a8 Merge remote-tracking branch 'upstream/master' 2013-03-12 16:52:57 +01:00
y.s
a66bc75ad7 add: A new theme 'ys'. 2013-03-12 21:15:22 +08:00
72ec24108a Tweaked parse_git_dirty() in lib/git.zsh to support proper dirty/clean parsing against both git 1.6 and git 1.7+ 2013-03-11 13:41:32 -06:00
6dd286bba3 Mercurial: add aliases for 'incoming' and 'outgoing' commands 2013-03-11 14:24:12 +04:00
9991401aaa Escape /Users/desudhak/.oh-my-zsh path (previously broke spaces in path) 2013-03-10 14:36:39 -05:00
49860bd61f add function vncviwer 2013-03-10 19:18:33 +03:00
0ab0e67ecf Merge pull request #1645 from mbologna/master
a new theme, different from the already existent themes :)
2013-03-06 06:15:25 -08:00
0b6e735885 added comment for auto-generated hostname color 2013-03-05 23:01:00 +01:00
c2d42f5a90 added michelebologna theme 2013-03-05 22:50:27 +01:00
fdd46d8815 Updated battery plugin. Displays charging time.
linux battery level now refreshes after every command
2013-03-02 11:09:57 +00:00
20fe5e6a57 Update _capistrano
Add use of Capfile commands
2013-03-01 18:33:38 +01:00
0744acd663 Update to latest per-directory-history
See [https://github.com/jimhester/per-directory-history]
2013-02-28 10:28:08 -05:00
4bb7b698ca Add alias for "composer dump-autoload" 2013-02-28 11:50:39 +01:00
f4b12321a9 Added rails4 plugin 2013-02-28 00:26:03 +04:00
f0a920df5a Checking to make sure tmux is actually installed before running plugin.
If it is not found an error message is printed.
2013-02-27 10:21:19 -05:00
4e8681c6e1 Adding options to choose tmux TERM for 256 and non-256 color terminals.
This may be needed on systems that don't have the proper terminfo for
screen and/or screen-256color. Otherwise the defaults of screen and
screen-256color should be fine.
2013-02-26 23:37:53 -05:00
86c9b32031 Adding compdef to maintain tmux completions. 2013-02-26 22:57:37 -05:00
56c46c4ed8 Fixing typo in alias. 2013-02-26 22:55:18 -05:00
691630a895 Adding option to prevent autostarting tmux more than once in the same session. 2013-02-26 22:29:26 -05:00
f096644c75 Checking if already in tmux before autostarting in tmux in tmux plugin. 2013-02-26 22:29:26 -05:00
43c50f03e3 Checking environment instead of local variable for fixing term in tmux plugin. 2013-02-26 22:29:26 -05:00
7b15627851 Fixing typos, logic, and gremlins in tmux plugin. 2013-02-26 22:29:26 -05:00
bf40d4e354 Adding helper tmux config files to tmux plugin. 2013-02-26 22:29:26 -05:00
45a4db33f8 Enabling autostart of tmux in tmux plugin. 2013-02-26 22:29:26 -05:00
0cf871d512 Adding comments to tmux plugin. 2013-02-26 22:29:26 -05:00
778ae57772 Tmux plugin now just runs tmux if any extra args are given. 2013-02-26 22:29:26 -05:00
3aef6793c2 Now checking for 256 color terminal in tmux plugin. 2013-02-26 22:29:26 -05:00
26ee66f179 Adding main function and alias to tmux plugin. 2013-02-26 22:29:26 -05:00
b979400cff Starting tmux plugin with basic config variables. 2013-02-26 22:29:26 -05:00
8c74d80fd6 Fix Symfony2 command completion 'permission denied'
app/console by default (if you create a new Symfony project via composer create-project or by downloading it from symfony.com) is not executable. Therefore I get the following error:

sf2 _symfony2_get_command_list:1: permission denied: app/console 
_symfony2_get_command_list:1: permission denied: app/console
_symfony2_get_command_list:1: permission denied: app/console

To make command completion work without changing app/console you just have to let php run it.
2013-02-22 17:07:15 +01:00
174e09ca8d Added --quiet to suppress message about gpg-agent already running. 2013-02-21 03:40:32 +01:00
014ed1f0e5 Disable ssh-agent support if another ssh-agent is already running. 2013-02-21 02:46:20 +01:00
3db22634a1 pipe git version check error to /dev/null (for when git doesn't exist) 2013-02-19 10:00:58 -08:00
5eb3ec6428 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh 2013-02-18 10:13:03 +01:00
2264c51355 Update plugins/extract/extract.plugin.zsh
Cause unrar to preserve directory structure. (Why is only unrar different?!)
2013-02-15 16:57:36 +00:00
535fafde81 SBT and Scala plugins.
The SBT (Simple Build Tool: scala-sbt.org) plugin is an original
work of mine.
The Scala (scala-lang.org) plugin was taken from zsh-lovers.
2013-02-15 16:05:15 +01:00
fb3dc24ff4 Support for opening tabs and windows in the same This fixed #1498 for me on Mountain Lion 2013-02-14 14:07:58 +05:30
ccdc5518f0 Update plugins/rvm/rvm.plugin.zsh
1) be gentle - first git pull request
2) added ruby 2.0.0 alias and function
2013-02-14 00:18:12 -08:00