1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00

plugins/mini-misc: init

This commit is contained in:
Heitor Augusto 2025-11-02 01:51:49 -03:00 committed by Austin Horstman
parent 3cd7113aa3
commit b3a2ae0725
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-misc";
moduleName = "mini.misc";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
make_global = [
"put"
"put_text"
];
};
}

View file

@ -0,0 +1,17 @@
{
empty = {
plugins.mini-misc.enable = true;
};
defaults = {
plugins.mini-misc = {
enable = true;
settings = {
make_global = [
"put"
"put_text"
];
};
};
};
}