mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-03 01:25:22 +02:00
29 lines
616 B
Nix
29 lines
616 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
helpers.neovim-plugin.mkNeovimPlugin {
|
|
name = "bacon";
|
|
package = "nvim-bacon";
|
|
maintainers = [ lib.maintainers.alisonjenkins ];
|
|
|
|
settingsOptions = {
|
|
quickfix = {
|
|
enabled = helpers.defaultNullOpts.mkBool true ''
|
|
Whether to populate the quickfix list with bacon errors and warnings.
|
|
'';
|
|
|
|
event_trigger = helpers.defaultNullOpts.mkBool true ''
|
|
Triggers the `QuickFixCmdPost` event after populating the quickfix list.
|
|
'';
|
|
};
|
|
};
|
|
|
|
settingsExample = {
|
|
quickfix = {
|
|
enabled = false;
|
|
event_trigger = true;
|
|
};
|
|
};
|
|
}
|