mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/kiwi: feed settings with a list instead of an unkeyed attrs
This commit is contained in:
parent
342a6b6c73
commit
4a274251bf
2 changed files with 12 additions and 12 deletions
|
|
@ -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";
|
||||||
};
|
}
|
||||||
};
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
};
|
}
|
||||||
};
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue