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 ];
settingsExample = {
__unkeyed-1 = {
settingsExample = [
{
name = "work";
path = "work-wiki";
};
__unkeyed-2 = {
}
{
name = "personal";
path = "personal-wiki";
};
};
}
];
}

View file

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