nix-community.nixvim/plugins/by-name/bacon/default.nix
Matt Sturgeon a32d2e6df0
plugins: cleanup lib usage in several plugins
- ccc
- cmake-tools
- baleia
- auto-save
- vim-css-color
- virt-column
- bacon
- coq-nvim
- dressing
- competitest
- direnv
- committia
- indent-o-matic
- guess-indent
- lsp-status
- octo
- lazygit
2024-09-27 07:08:17 +01:00

25 lines
610 B
Nix

{ lib, ... }:
lib.nixvim.neovim-plugin.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;
};
};
}