nix-community.nixvim/plugins/by-name/bacon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
604 B
Nix
Raw Normal View History

{ lib, ... }:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkNeovimPlugin {
2024-02-27 12:45:47 +00:00
name = "bacon";
package = "nvim-bacon";
2024-09-27 05:28:00 +01:00
maintainers = [ lib.maintainers.alisonjenkins ];
2024-02-27 18:13:04 +01:00
2024-02-27 12:45:47 +00:00
settingsOptions = {
quickfix = {
enabled = lib.nixvim.defaultNullOpts.mkBool true ''
2024-02-27 18:13:04 +01:00
Whether to populate the quickfix list with bacon errors and warnings.
'';
event_trigger = lib.nixvim.defaultNullOpts.mkBool true ''
2024-02-27 18:13:04 +01:00
Triggers the `QuickFixCmdPost` event after populating the quickfix list.
'';
2024-02-27 12:45:47 +00:00
};
};
settingsExample = {
quickfix = {
enabled = false;
event_trigger = true;
};
};
}