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