Fixes #10365. Add bloop plugin

This commit is contained in:
Arya 2021-10-31 02:37:25 +05:30
parent 04c96e235f
commit a9ff851e19
2 changed files with 22 additions and 0 deletions

18
plugins/bloop/README.md Normal file
View File

@ -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 |

View File

@ -0,0 +1,4 @@
alias bp='bloop projects'
alias bc='bloop compile '
alias bcl='bloop clean '
alias br='bloop run '