1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-07 17:41:04 +01:00

nvim-tree: git.enable expects a boolean (#24)

This commit is contained in:
Alexander Nortung 2022-07-18 21:14:41 +00:00 committed by GitHub
parent a4aefb2239
commit 4d573a1e75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ in
git = {
enable = mkOption {
type = types.nullOr types.str;
type = types.nullOr types.bool;
default = null;
description = "Enable git integration";
};