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
- Host: GitHub
- URL: https://github.com/bnjjo/smolcomp.nvim
- Owner: bnjjo
- Created: 2026-06-06T12:54:04.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-21T11:24:11.000Z (about 1 month ago)
- Last Synced: 2026-06-21T14:13:14.641Z (about 1 month ago)
- Topics: lua, neovim, neovim-plugin, nvim
- Language: Lua
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
```