mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-06 07:14:31 +02:00
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
26 lines
685 B
Nix
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;
|
|
};
|
|
};
|
|
}
|