1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00

plugins/kiwi: feed settings with a list instead of an unkeyed attrs

This commit is contained in:
Gaetan Lepage 2025-10-24 13:55:17 +02:00 committed by Gaétan Lepage
parent 342a6b6c73
commit 4a274251bf
2 changed files with 12 additions and 12 deletions

View file

@ -5,14 +5,14 @@ lib.nixvim.plugins.mkNeovimPlugin {
maintainers = [ lib.maintainers.GaetanLepage ]; maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = { settingsExample = [
__unkeyed-1 = { {
name = "work"; name = "work";
path = "work-wiki"; path = "work-wiki";
}; }
__unkeyed-2 = { {
name = "personal"; name = "personal";
path = "personal-wiki"; path = "personal-wiki";
}; }
}; ];
} }

View file

@ -18,16 +18,16 @@
plugins.kiwi = { plugins.kiwi = {
enable = true; enable = true;
settings = { settings = [
__unkeyed-1 = { {
name = "work"; name = "work";
path = "work-wiki"; path = "work-wiki";
}; }
__unkeyed-2 = { {
name = "personal"; name = "personal";
path = "personal-wiki"; path = "personal-wiki";
}; }
}; ];
}; };
}; };
} }