1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-11 04:56:06 +01:00

plugins/utils/indent-blankline: fix enable option (#163)

This commit is contained in:
Gaétan Lepage 2023-02-02 19:04:36 +01:00 committed by GitHub
parent 0d678ebd9d
commit 548c76ee32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;