From db0dcc6ee32708b2a391d1d5d5b855b5c6ed5b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=A9tan=20Lepage?= <33058747+GaetanLepage@users.noreply.github.com> Date: Tue, 27 Feb 2024 18:13:04 +0100 Subject: [PATCH] plugins/bacon: formatting (#1164) --- plugins/utils/bacon.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins/utils/bacon.nix b/plugins/utils/bacon.nix index bbe9fbff..90310362 100644 --- a/plugins/utils/bacon.nix +++ b/plugins/utils/bacon.nix @@ -9,10 +9,16 @@ helpers.neovim-plugin.mkNeovimPlugin config name = "bacon"; defaultPackage = pkgs.vimPlugins.nvim-bacon; maintainers = [helpers.maintainers.alisonjenkins]; + settingsOptions = { quickfix = { - enabled = helpers.defaultNullOpts.mkBool true "true 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"; + enabled = helpers.defaultNullOpts.mkBool true '' + 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. + ''; }; };