nix-community.nixvim/plugins/by-name/bacon/default.nix
osbm a41559f093
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
treewide: add plugin descriptions
2025-06-24 06:10:11 +00:00

26 lines
685 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "bacon";
package = "nvim-bacon";
maintainers = [ lib.maintainers.alisonjenkins ];
description = "View and jump to locations found in `.bacon-locations` files.";
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;
};
};
}