mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
18 lines
299 B
Nix
18 lines
299 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "kiwi";
|
|
package = "kiwi-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = [
|
|
{
|
|
name = "work";
|
|
path = "work-wiki";
|
|
}
|
|
{
|
|
name = "personal";
|
|
path = "personal-wiki";
|
|
}
|
|
];
|
|
}
|