A Neovim plugin that integrates groom
with neovim.
Obviously it requires groom
to be installed.
- Run
groom
tasks right from Neovim. QuickFix List
is automatically updated with task output.
Add this configuration to the plugin section of your neovim config.
{
'pspiagicw/groom.nvim',
config = true,
},
groom
exposes only a single function, run
. Use lua to run the function without any arguments.
require("groom").run()
No mappings are done by
groom.nvim
, any mappings have to made by the user.
If you want to make a mapping, below snippet might be useful.
local opts = { noremap = true , silent = true }
map('n', '<leader>lg', ':lua require("groom").run()<CR>', opts)