An open API service indexing awesome lists of open source software.

https://github.com/bnjjo/smolcomp.nvim

small emacs compile-mode style plugin
https://github.com/bnjjo/smolcomp.nvim

lua neovim neovim-plugin nvim

Last synced: 15 days ago
JSON representation

small emacs compile-mode style plugin

Awesome Lists containing this project

README

          

# smolcomp.nvim

## about & acknowledgements
this is a small plugin meant to mimic 'compile mode' from emacs. it is inspired by [compile-mode.nvim](https://github.com/ej-shafran/compile-mode.nvim), but intentionally smaller with zero dependencies.

## usage
`cp` triggers the compile mode prompt, enter your command and press ``.

## installation

### vim.pack (neovim 0.12+)
```lua
vim.pack.add({ "https://github.com/bnjjo/smolcomp.nvim" })
```
### lazy.nvim
```lua
{
"bnjjo/smolcomp.nvim"
}
```