From 548c76ee320a00866ecad0c0775039e8d640586c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=A9tan=20Lepage?= <33058747+GaetanLepage@users.noreply.github.com> Date: Thu, 2 Feb 2023 19:04:36 +0100 Subject: [PATCH] plugins/utils/indent-blankline: fix enable option (#163) --- plugins/utils/indent-blankline.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/utils/indent-blankline.nix b/plugins/utils/indent-blankline.nix index 63353b6b..89298b2d 100644 --- a/plugins/utils/indent-blankline.nix +++ b/plugins/utils/indent-blankline.nix @@ -8,7 +8,7 @@ with lib; let in { options.plugins.indent-blankline = { - enable = helpers.defaultNullOpts.mkBool false "Enable indent-blankline.nvim"; + enable = mkEnableOption "indent-blankline.nvim"; package = helpers.mkPackageOption "indent-blankline" pkgs.vimPlugins.indent-blankline-nvim;