mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-21 17:59:41 +01:00
18 lines
329 B
Nix
18 lines
329 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "kiwi";
|
|
package = "kiwi-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
__unkeyed-1 = {
|
|
name = "work";
|
|
path = "work-wiki";
|
|
};
|
|
__unkeyed-2 = {
|
|
name = "personal";
|
|
path = "personal-wiki";
|
|
};
|
|
};
|
|
}
|