From 4edd01d6145e645e38a7a9027ac23bb657e368b0 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 13 Feb 2024 17:05:49 +0100 Subject: [PATCH] helpers/vim-plugin/mkVimPlugin: add extraOptions option --- lib/vim-plugin.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/vim-plugin.nix b/lib/vim-plugin.nix index 567cbaa7..7339fe71 100644 --- a/lib/vim-plugin.nix +++ b/lib/vim-plugin.nix @@ -16,6 +16,7 @@ with lib; { settingsExample ? null, globalPrefix ? "", addExtraConfigRenameWarning ? false, + extraOptions ? {}, # config extraPlugins ? [], extraPackages ? [], @@ -86,7 +87,8 @@ with lib; { } // settingsOption // packageOption - // pluginOptions; + // pluginOptions + // extraOptions; imports = imports