diff --git a/plugins/bloop/README.md b/plugins/bloop/README.md new file mode 100644 index 000000000..608eb2fbd --- /dev/null +++ b/plugins/bloop/README.md @@ -0,0 +1,18 @@ +# bloop plugin + +The plugin adds several aliases for common [bloop](https://https://scalacenter.github.io/bloop/) commands. + +To use it, add `bloop` to the plugins array of your zshrc file: + +```zsh +plugins=(... bloop) +``` + +## Aliases + +| Alias | Command | Description | +|----------|---------------------------------------|---------------------------------------------------------------------| +| `bp` | `brew projects` | List the projects in current repository | +| `bc` | `brew compile ` | Compile the project | +| `bcl` | `brew clean ` | Clean the project | +| `br` | `brew run ` | Run the project | diff --git a/plugins/bloop/bloop.plugin.zsh b/plugins/bloop/bloop.plugin.zsh new file mode 100644 index 000000000..98e72321b --- /dev/null +++ b/plugins/bloop/bloop.plugin.zsh @@ -0,0 +1,4 @@ +alias bp='bloop projects' +alias bc='bloop compile ' +alias bcl='bloop clean ' +alias br='bloop run '