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:
parent
3cd7113aa3
commit
b3a2ae0725
2 changed files with 31 additions and 0 deletions
14
plugins/by-name/mini-misc/default.nix
Normal file
14
plugins/by-name/mini-misc/default.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
}
|
||||
17
tests/test-sources/plugins/by-name/mini-misc/default.nix
Normal file
17
tests/test-sources/plugins/by-name/mini-misc/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.mini-misc.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.mini-misc = {
|
||||
enable = true;
|
||||
settings = {
|
||||
make_global = [
|
||||
"put"
|
||||
"put_text"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue