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:
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 ];
|
||||
|
||||
settingsExample = {
|
||||
__unkeyed-1 = {
|
||||
settingsExample = [
|
||||
{
|
||||
name = "work";
|
||||
path = "work-wiki";
|
||||
};
|
||||
__unkeyed-2 = {
|
||||
}
|
||||
{
|
||||
name = "personal";
|
||||
path = "personal-wiki";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,16 +18,16 @@
|
|||
plugins.kiwi = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
__unkeyed-1 = {
|
||||
settings = [
|
||||
{
|
||||
name = "work";
|
||||
path = "work-wiki";
|
||||
};
|
||||
__unkeyed-2 = {
|
||||
}
|
||||
{
|
||||
name = "personal";
|
||||
path = "personal-wiki";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue