This commit is contained in:
ankusharya 2025-12-03 13:51:23 +13:00 committed by GitHub
commit d8731bcccd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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://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` | `bloop projects` | List the projects in current repository |
| `bc` | `bloop compile ` | Compile the project |
| `bcl` | `bloop clean ` | Clean the project |
| `br` | `bloop 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 '