- fasd - history - mercurial - pylint - repo - yii2master
parent
ff6d111d79
commit
610b2529d2
73 changed files with 546 additions and 553 deletions
@ -1,19 +1,21 @@ |
|||||||
## APACHE2 MACPORTS PLUGIN |
# apache2-macports plugin |
||||||
|
|
||||||
|
Enables aliases to control a local Apache2 installed via [MacPorts](https://www.macports.org/). |
||||||
|
|
||||||
--- |
To use it, add `apache2-macports` to the plugins array in your zshrc file: |
||||||
|
|
||||||
### FEATURES |
```zsh |
||||||
|
plugins=(... apache2-macports) |
||||||
|
``` |
||||||
|
|
||||||
| Alias | Function | Description | |
## Aliases |
||||||
|:--------------:|:-------------------------------------------------------------------------------|----------------------:| |
|
||||||
| apache2restart | sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart | Restart apache daemon | |
|
||||||
| apache2start | sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper start | Start apache daemon | |
|
||||||
| apache2stop | sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper stop | Stop apache daemon | |
|
||||||
|
|
||||||
--- |
| Alias | Function | Description | |
||||||
|
|----------------|-----------------------------------------|-----------------------| |
||||||
|
| apache2restart | `sudo /path/to/apache2.wrapper restart` | Restart apache daemon | |
||||||
|
| apache2start | `sudo /path/to/apache2.wrapper start` | Start apache daemon | |
||||||
|
| apache2stop | `sudo /path/to/apache2.wrapper stop` | Stop apache daemon | |
||||||
|
|
||||||
### CONTRIBUTORS |
## Contributors |
||||||
- Alexander Rinass (alex@rinass.net) |
|
||||||
|
|
||||||
--- |
- Alexander Rinass (alex@rinass.net) |
||||||
|
|||||||
@ -1,9 +1,9 @@ |
|||||||
# Cpanm |
# Cpanm |
||||||
|
|
||||||
This plugin provides completion for [Cpanm](https://github.com/miyagawa/cpanminus) ([docs](https://metacpan.org/pod/App::cpanminus)). |
This plugin provides completion for [Cpanm](https://github.com/miyagawa/cpanminus) ([docs](https://metacpan.org/pod/App::cpanminus)). |
||||||
|
|
||||||
To use it add cpanm to the plugins array in your zshrc file. |
To use it add cpanm to the plugins array in your zshrc file. |
||||||
|
|
||||||
```bash |
```zsh |
||||||
plugins=(... cpanm) |
plugins=(... cpanm) |
||||||
``` |
``` |
||||||
|
|||||||
@ -1,13 +1,16 @@ |
|||||||
if [ $commands[fasd] ]; then # check if fasd is installed |
# check if fasd is installed |
||||||
fasd_cache="${ZSH_CACHE_DIR}/fasd-init-cache" |
if (( ! ${+commands[fasd]} )); then |
||||||
if [ "$(command -v fasd)" -nt "$fasd_cache" -o ! -s "$fasd_cache" ]; then |
return |
||||||
fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install \ |
fi |
||||||
zsh-wcomp zsh-wcomp-install >| "$fasd_cache" |
|
||||||
fi |
|
||||||
source "$fasd_cache" |
|
||||||
unset fasd_cache |
|
||||||
|
|
||||||
alias v='f -e "$EDITOR"' |
fasd_cache="${ZSH_CACHE_DIR}/fasd-init-cache" |
||||||
alias o='a -e xdg-open' |
if [[ "$commands[fasd]" -nt "$fasd_cache" || ! -s "$fasd_cache" ]]; then |
||||||
alias j='zz' |
fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install \ |
||||||
|
zsh-wcomp zsh-wcomp-install >| "$fasd_cache" |
||||||
fi |
fi |
||||||
|
source "$fasd_cache" |
||||||
|
unset fasd_cache |
||||||
|
|
||||||
|
alias v='f -e "$EDITOR"' |
||||||
|
alias o='a -e xdg-open' |
||||||
|
alias j='zz' |
||||||
|
|||||||
@ -1,15 +1,23 @@ |
|||||||
## forklift |
# forklift |
||||||
|
|
||||||
Plugin for ForkLift, an FTP application for OS X. |
Plugin for ForkLift, an FTP application for OS X. |
||||||
|
|
||||||
### Requirements |
To use it, add `forklift` to the plugins array in your zshrc file: |
||||||
|
|
||||||
|
```zsh |
||||||
|
plugins=(... forklift) |
||||||
|
``` |
||||||
|
|
||||||
|
## Requirements |
||||||
|
|
||||||
* [ForkLift](https://binarynights.com/) |
* [ForkLift](https://binarynights.com/) |
||||||
|
|
||||||
### Usage |
## Usage |
||||||
|
|
||||||
<code>fl [*file_or_folder*]</code> |
`fl [<file_or_folder>]` |
||||||
|
|
||||||
* If `fl` is called without arguments then the current folder is opened in ForkLift. This is equivalent to `fl .`. |
* If `fl` is called without arguments then the current folder is opened in ForkLift. This is equivalent to `fl .`. |
||||||
|
|
||||||
* If `fl` is called with a directory as the argument, then that directory is opened in ForkLift. If called with a non-directory file as the argument, then the file's parent directory is opened. |
* If `fl` is called with a directory as the argument, then that directory is opened in ForkLift |
||||||
|
|
||||||
|
* If `fl` is called with a non-directory file as the argument, then the file's parent directory is opened. |
||||||
|
|||||||
@ -1,19 +1,10 @@ |
|||||||
ZSH-Geeknote |
# Geeknote plugin |
||||||
============ |
|
||||||
|
|
||||||
[Geeknote](https://github.com/VitaliyRodnenko/geeknote) plugin for oh-my-zsh. |
This plugin provides autocompletion for [Geeknote](https://github.com/VitaliyRodnenko/geeknote) |
||||||
|
and an alias for `geeknote` called `gn`. |
||||||
|
|
||||||
Plugins provides: |
To use it, add `geeknote` to the plugins array in your zshrc file: |
||||||
|
|
||||||
* auto completion of commands and their options |
```zsh |
||||||
* alias `gn` |
plugins=( ... geeknote ...) |
||||||
|
``` |
||||||
## Installation |
|
||||||
|
|
||||||
### oh-my-zsh |
|
||||||
This plugin is already bundled in oh-my-zsh. To enable just configure plugin definition |
|
||||||
|
|
||||||
plugins=( ... geeknote ...) |
|
||||||
|
|
||||||
### Antigen |
|
||||||
Use [Antigen's](https://github.com/zsh-users/antigen) bundle command to install by adding `antigen bundle s7anley/zsh-geeknote` to your `.zshrc` along with your other plugins. |
|
||||||
|
|||||||
@ -1,15 +1,17 @@ |
|||||||
## history |
# history plugin |
||||||
|
|
||||||
Provides a couple of convenient aliases for using the `history` command to examine your command line history. |
Provides a couple of convenient aliases for using the `history` command to examine your command line history. |
||||||
|
|
||||||
### Requirements |
To use it, add `history` to the plugins array in your zshrc file: |
||||||
|
|
||||||
* None. |
```zsh |
||||||
|
plugins=(... history) |
||||||
|
``` |
||||||
|
|
||||||
### Usage |
## Aliases |
||||||
|
|
||||||
* If `h` is called, your command history is listed. Equivalent to using `history` |
| Alias | Command | Description | |
||||||
|
|-------|----------------------|------------------------------------------------------------------| |
||||||
* If `hsi` is called with an argument, a **case insensitive** `grep` search is performed on your command history, looking for commands that match the argument provided |
| `h` | `history` | Prints your command history | |
||||||
|
| `hs` | `history \| grep` | Use grep to search your command history | |
||||||
* If `hsi` is called without an argument you will help on `grep` arguments |
| `hsi` | `history \| grep -i` | Use grep to do a case-insensitive search of your command history | |
||||||
|
|||||||
@ -1,8 +1,3 @@ |
|||||||
alias h='history' |
alias h='history' |
||||||
|
alias hs='history | grep' |
||||||
function hs |
alias hsi='history | grep -i' |
||||||
{ |
|
||||||
history | grep $* |
|
||||||
} |
|
||||||
|
|
||||||
alias hsi='hs -i' |
|
||||||
|
|||||||
@ -1,61 +1,66 @@ |
|||||||
# Mercurial plugin |
# Mercurial plugin |
||||||
### Usage |
|
||||||
Update .zshrc: |
This plugin adds some handy aliases for using Mercurial as well as a few |
||||||
|
utility and prompt functions that can be used in a theme. |
||||||
1. Add name to the list of plugins, e.g. `plugins=(... mercurial ...)` |
|
||||||
(that is pretty obvious). |
To use it, add `mercurial` to the plugins array in your zshrc file: |
||||||
2. Switch to a theme which uses `hg_prompt_info`. |
|
||||||
|
```zsh |
||||||
Or, customize the `$PROMPT` variable of your current theme to contain current folder mercurial repo info. This can be done by putting a custom version of the theme in `$ZSH_CUSTOM` or by changing `$PROMPT` in `.zshrc` after loading the theme. |
plugins=(... mercurial) |
||||||
|
``` |
||||||
The `robbyrussell` theme is used by default, so you need to modify `$PROMPT` var by adding `$(hg_prompt_info)` after `$(git_prompt_info)`, so it looks like this: |
|
||||||
|
## Aliases |
||||||
```zsh |
|
||||||
PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)$(hg_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
| Alias | Command | |
||||||
``` |
|--------|-------------------------------------------------------------------------------------------------------------| |
||||||
|
| `hga` | `hg add` | |
||||||
3. Initialize additional vars used in plugin. So in short put next in **.zshrc**: |
| `hgc` | `hg commit` | |
||||||
|
| `hgca` | `hg commit --amend` | |
||||||
``` |
| `hgb` | `hg branch` | |
||||||
ZSH_THEME_HG_PROMPT_PREFIX="%{$fg_bold[magenta]%}hg:(%{$fg[red]%}" |
| `hgba` | `hg branches` | |
||||||
ZSH_THEME_HG_PROMPT_SUFFIX="%{$reset_color%}" |
| `hgbk` | `hg bookmarks` | |
||||||
ZSH_THEME_HG_PROMPT_DIRTY="%{$fg[magenta]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
| `hgco` | `hg checkout` | |
||||||
ZSH_THEME_HG_PROMPT_CLEAN="%{$fg[magenta]%})" |
| `hgd` | `hg diff` | |
||||||
``` |
| `hged` | `hg diffmerge` | |
||||||
|
| `hgp` | `hg push` | |
||||||
### What's inside? |
| `hgs` | `hg status` | |
||||||
#### Adds handy aliases: |
| `hgsl` | `hg log --limit 20 --template "{node|short} | {date|isodatesec} | {author|user}: {desc|strip|firstline}\n"` | |
||||||
###### general |
| `hgun` | `hg resolve --list` | |
||||||
* `hga` - 'hg add` |
| `hgi` | `hg incoming` | |
||||||
* `hgc` - `hg commit` |
| `hgl` | `hg pull -u` | |
||||||
* `hgb` - `hg branch` |
| `hglr` | `hg pull --rebase` | |
||||||
* `hgba` - `hg branches` |
| `hgo` | `hg outgoing` | |
||||||
* `hgbk` - `hg bookmarks` |
|
||||||
* `hgco` - `hg checkout` |
## Prompt usage |
||||||
* `hgd` - `hg diff` |
|
||||||
* `hged` - `hg diffmerge` |
- Switch to a theme which uses `hg_prompt_info` |
||||||
|
|
||||||
###### pull and update |
- Or customize the `$PROMPT` variable of your current theme to contain current folder mercurial repo info. |
||||||
* `hgi` - `hg incoming` |
This can be done by putting a custom version of the theme in `$ZSH_CUSTOM` or by changing `$PROMPT` in |
||||||
* `hgl` - `hg pull -u` |
`.zshrc` after loading the theme. |
||||||
* `hglr` - `hg pull --rebase` |
|
||||||
* `hgo` - `hg outgoing` |
For example, for the `robbyrussell` theme you need to modify `$PROMPT` var by adding `$(hg_prompt_info)` |
||||||
* `hgp` - `hg push` |
after `$(git_prompt_info)`, so it looks like this: |
||||||
* `hgs` - `hg status` |
|
||||||
* `hgsl` - `hg log --limit 20 --template "{node|short} | {date|isodatesec} | {author|user}: {desc|strip|firstline}\n"` |
```zsh |
||||||
|
PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)$(hg_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||||
###### this is the 'git commit --amend' equivalent |
``` |
||||||
* `hgca` - `hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip` |
|
||||||
|
You can also redefine additional vars used in the plugin (after Oh My Zsh is sourced): |
||||||
###### list unresolved files (since hg does not list unmerged files in the status command) |
|
||||||
* `hgun` - `hg resolve --list` |
```zsh |
||||||
|
ZSH_THEME_HG_PROMPT_PREFIX="%{$fg_bold[magenta]%}hg:(%{$fg[red]%}" |
||||||
#### Displays repo branch and directory status in prompt |
ZSH_THEME_HG_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
This is the same as git plugin does. |
ZSH_THEME_HG_PROMPT_DIRTY="%{$fg[magenta]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||||
|
ZSH_THEME_HG_PROMPT_CLEAN="%{$fg[magenta]%})" |
||||||
**Note**: Additional changes to **.zshrc**, or using a theme designed to use `hg_prompt_info`, are required in order for this to work. |
``` |
||||||
|
|
||||||
### Mantainers |
### Display repo branch and directory status in prompt |
||||||
[ptrv](https://github.com/ptrv) - original creator |
|
||||||
|
This is the same as git plugin does. **Note**: additional changes to `.zshrc`, or using a theme designed |
||||||
[oshybystyi](https://github.com/oshybystyi) - created this README and know how most of code works |
to use `hg_prompt_info`, are required in order for this to work. |
||||||
|
|
||||||
|
## Mantainers |
||||||
|
|
||||||
|
- [ptrv](https://github.com/ptrv): original creator |
||||||
|
- [oshybystyi](https://github.com/oshybystyi) |
||||||
|
|||||||
@ -1,16 +1,19 @@ |
|||||||
# node plugin |
# node plugin |
||||||
|
|
||||||
|
This plugin adds `node-docs` function that opens specific section in [Node.js](https://nodejs.org) |
||||||
|
documentation (depending on the installed version). |
||||||
|
|
||||||
To use it, add `node` to the plugins array of your zshrc file: |
To use it, add `node` to the plugins array of your zshrc file: |
||||||
|
|
||||||
```zsh |
```zsh |
||||||
plugins=(... node) |
plugins=(... node) |
||||||
``` |
``` |
||||||
|
|
||||||
This plugin adds `node-docs` function that open specific section in [Node.js](https://nodejs.org) documentation (depending on the installed version). |
## Usage |
||||||
For example: |
|
||||||
|
|
||||||
```zsh |
```zsh |
||||||
# Opens https://nodejs.org/docs/latest-v10.x/api/fs.html |
# Opens https://nodejs.org/docs/latest-v10.x/api/fs.html |
||||||
$ node-docs fs |
$ node-docs fs |
||||||
# Opens https://nodejs.org/docs/latest-v10.x/api/path.html |
# Opens https://nodejs.org/docs/latest-v10.x/api/path.html |
||||||
$ node-docs path |
$ node-docs path |
||||||
``` |
``` |
||||||
|
|||||||
@ -1,9 +1,15 @@ |
|||||||
## Perms |
# Perms plugin |
||||||
|
|
||||||
Plugin to handle some unix filesystem permissions quickly |
Plugin to handle some unix filesystem permissions quickly. |
||||||
|
|
||||||
### Usage |
To use it, add `perms` to the plugins array in your zshrc file: |
||||||
|
|
||||||
|
```zsh |
||||||
|
plugins=(... perms) |
||||||
|
``` |
||||||
|
|
||||||
|
## Usage |
||||||
|
|
||||||
* `set755` recursively sets all given directories (default to .) to octal 755. |
* `set755` recursively sets all given directories (default to .) to octal 755. |
||||||
* `set644` recursively sets all given files (default to .) to octal 644. |
* `set644` recursively sets all given files (default to .) to octal 644. |
||||||
* `fixperms` is a wrapper around `set755` and `set644` applied to a specified directory or the current directory otherwise. It also prompts prior to execution unlike the other two aliases. |
* `fixperms` is a wrapper around `set755` and `set644` applied to a specified directory or the current directory otherwise. It also prompts prior to execution unlike the other two aliases. |
||||||
|
|||||||
@ -1,7 +1,25 @@ |
|||||||
## repo |
# repo plugin |
||||||
**Maintainer:** [Stibbons](https://github.com/Stibbons) |
|
||||||
|
|
||||||
This plugin mainly add support automatic completion for the repo command line tool: |
This plugin mainly adds some aliases and support for automatic completion for |
||||||
https://code.google.com/p/git-repo/ |
the [repo command line tool](https://code.google.com/p/git-repo/). |
||||||
|
|
||||||
* `r` aliases `repo` |
To use it, add `repo` to the plugins array in your zshrc file: |
||||||
|
|
||||||
|
```zsh |
||||||
|
plugins=(... repo) |
||||||
|
``` |
||||||
|
|
||||||
|
## Aliases |
||||||
|
|
||||||
|
| Alias | Command | |
||||||
|
|---------|----------------------------------------| |
||||||
|
| `r` | `repo` | |
||||||
|
| `rra` | `repo rebase --auto-stash` | |
||||||
|
| `rs` | `repo sync` | |
||||||
|
| `rsrra` | `repo sync ; repo rebase --auto-stash` | |
||||||
|
| `ru` | `repo upload` | |
||||||
|
| `rst` | `repo status` | |
||||||
|
| `rsto` | `repo status -o` | |
||||||
|
| `rfa` | `repo forall -c` | |
||||||
|
| `rfap` | `repo forall -p -c` | |
||||||
|
| `rinf` | `repo info` | |
||||||
|
|||||||
@ -1,15 +1,16 @@ |
|||||||
## Scala plugin |
# Scala plugin |
||||||
|
|
||||||
Completion script for [scala and scalac](https://www.scala-lang.org/) commands. |
Completion script for [scala and scalac](https://www.scala-lang.org/) commands. |
||||||
|
|
||||||
To use it, add `scala` to the plugins array of your zshrc file: |
To use it, add `scala` to the plugins array of your zshrc file: |
||||||
``` |
|
||||||
|
```zsh |
||||||
plugins=(... scala) |
plugins=(... scala) |
||||||
``` |
``` |
||||||
|
|
||||||
## Aliases |
## Aliases |
||||||
|
|
||||||
| Command | Description | |
| Command | Description | |
||||||
|------------------|---------------------------------------------------------------------------------| |
|----------|---------------------------------| |
||||||
| `scala` | Run code in the Scala language | |
| `scala` | Run code in the Scala language | |
||||||
| `scalac` | Compiler for the Scala language | |
| `scalac` | Compiler for the Scala language | |
||||||
|
|||||||
@ -1,57 +1,50 @@ |
|||||||
## zeus |
# zeus plugin |
||||||
**Maintainer:** [b4mboo](https://github.com/b4mboo) |
|
||||||
|
[Zeus](https://github.com/burke/zeus) preloads your Rails environment and forks that |
||||||
* `zi` aliases `zeus init` |
process whenever needed. This effectively speeds up Rails' boot process to under 1 sec. |
||||||
* `zinit` aliases `zeus init` |
This plugin adds autocompletion for zeus and aliases for common usage. |
||||||
|
|
||||||
* `zs` aliases `zeus start` |
To use it, add `zeus` to the plugins array in your zshrc file: |
||||||
* `ztart` aliases `zeus start` |
|
||||||
|
```zsh |
||||||
* `zc` aliases `zeus console` |
plugins=(... zeus) |
||||||
* `zonsole` aliases `zeus console` |
``` |
||||||
|
|
||||||
* `zsr` aliases `zeus server` |
You also need to have the `zeus` gem installed. |
||||||
* `zerver` aliases `zeus server` |
|
||||||
|
| Alias | Command | |
||||||
* `zr` aliases `zeus rake` |
|:-------------|:-------------------------------------------------------------------| |
||||||
* `zake` aliases `zeus rake` |
| _zi_ | `zeus init` | |
||||||
|
| _zinit_ | `zeus init` | |
||||||
* `zg` aliases `zeus generate` |
| _zs_ | `zeus start` | |
||||||
* `zenerate` aliases `zeus generate` |
| _ztart_ | `zeus start` | |
||||||
|
| _zc_ | `zeus console` | |
||||||
* `zrn` aliases `zeus runner` |
| _zonsole_ | `zeus console` | |
||||||
* `zunner` aliases `zeus runner` |
| _zsr_ | `zeus server` | |
||||||
|
| _zerver_ | `zeus server` | |
||||||
* `zcu` aliases `zeus cucumber` |
| _zr_ | `noglob zeus rake` | |
||||||
* `zucumber` aliases `zeus cucumber` |
| _zake_ | `noglob zeus rake` | |
||||||
* `zwip` aliases `zeus cucumber --profile wip` |
| _zg_ | `zeus generate` | |
||||||
|
| _zenerate_ | `zeus generate` | |
||||||
* `zspec` aliases `zeus rspec` |
| _zrn_ | `zeus runner` | |
||||||
|
| _zunner_ | `zeus runner` | |
||||||
* `zt` aliases `zeus test` |
| _zcu_ | `zeus cucumber` | |
||||||
* `zest` aliases `zeus test` |
| _zucumber_ | `zeus cucumber` | |
||||||
|
| _zwip_ | `zeus cucumber --profile wip` | |
||||||
* `zu` aliases `zeus test test/unit/*` |
| _zspec_ | `zeus rspec` | |
||||||
* `zunits` aliases `zeus test test/unit/*` |
| _zt_ | `zeus test` | |
||||||
|
| _zest_ | `zeus test` | |
||||||
* `zf` aliases `zeus test test/functional/*` |
| _zu_ | `zeus test test/unit/*` | |
||||||
* `zunctional` aliases `zeus test test/functional/*` |
| _zunits_ | `zeus test test/unit/*` | |
||||||
|
| _zf_ | `zeus test test/functional/*` | |
||||||
* `za` aliases `zeus test test/unit/*; zeus test test/functional/; zeus cucumber` |
| _zunctional_ | `zeus test test/functional/*` | |
||||||
* `zall` aliases `zeus test test/unit/*; zeus test test/functional/; zeus cucumber` |
| _za_ | `zeus test test/unit/*; zeus test test/functional/; zeus cucumber` | |
||||||
|
| _zall_ | `zeus test test/unit/*; zeus test test/functional/; zeus cucumber` | |
||||||
* `zsw` aliases `rm .zeus.sock` |
| _zsw_ | `rm .zeus.sock` | |
||||||
* `zweep` aliases `rm .zeus.sock` |
| _zweep_ | `rm .zeus.sock` | |
||||||
|
| _zdbr_ | `zeus rake db:reset db:test:prepare` | |
||||||
* `zdbr` aliases `zeus rake db:reset db:test:prepare` |
| _zdbreset_ | `zeus rake db:reset db:test:prepare` | |
||||||
* `zdbreset` aliases `zeus rake db:reset db:test:prepare` |
| _zdbm_ | `zeus rake db:migrate db:test:prepare` | |
||||||
|
| _zdbmigrate_ | `zeus rake db:migrate db:test:prepare` | |
||||||
* `zdbm` aliases `zeus rake db:migrate db:test:prepare` |
| _zdbc_ | `zeus rake db:create` | |
||||||
* `zdbmigrate` aliases `zeus rake db:migrate db:test:prepare` |
| _zdbcm_ | `zeus rake db:create db:migrate db:test:prepare` | |
||||||
|
|
||||||
* `zdbc` aliases `zeus rake db:create` |
|
||||||
|
|
||||||
* `zdbcm` aliases `zeus rake db:create db:migrate db:test:prepare` |
|
||||||
|
|
||||||
## Installation |
|
||||||
Add zeus to the plugins line of your `.zshconfig` file (e.g. `plugins=(rails git zeus)`) |
|
||||||
|
|||||||
Loading…
Reference in new issue