mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-05 23:04:31 +02:00
plugins/bacon: formatting (#1164)
This commit is contained in:
parent
51f6f562d1
commit
db0dcc6ee3
1 changed files with 8 additions and 2 deletions
|
@ -9,10 +9,16 @@ helpers.neovim-plugin.mkNeovimPlugin config
|
||||||
name = "bacon";
|
name = "bacon";
|
||||||
defaultPackage = pkgs.vimPlugins.nvim-bacon;
|
defaultPackage = pkgs.vimPlugins.nvim-bacon;
|
||||||
maintainers = [helpers.maintainers.alisonjenkins];
|
maintainers = [helpers.maintainers.alisonjenkins];
|
||||||
|
|
||||||
settingsOptions = {
|
settingsOptions = {
|
||||||
quickfix = {
|
quickfix = {
|
||||||
enabled = helpers.defaultNullOpts.mkBool true "true to populate the quickfix list with bacon errors and warnings.";
|
enabled = helpers.defaultNullOpts.mkBool true ''
|
||||||
event_trigger = helpers.defaultNullOpts.mkBool true "triggers the QuickFixCmdPost event after populating the quickfix list";
|
Whether to populate the quickfix list with bacon errors and warnings.
|
||||||
|
'';
|
||||||
|
|
||||||
|
event_trigger = helpers.defaultNullOpts.mkBool true ''
|
||||||
|
Triggers the `QuickFixCmdPost` event after populating the quickfix list.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue