mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
Merge 738a8f0250
into 6a1a348ab1
This commit is contained in:
commit
3f5c7a8e87
2 changed files with 26 additions and 0 deletions
12
plugins/by-name/mini-trailspace/default.nix
Normal file
12
plugins/by-name/mini-trailspace/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
|
name = "mini-trailspace";
|
||||||
|
moduleName = "mini.trailspace";
|
||||||
|
packPathName = "mini.trailspace";
|
||||||
|
|
||||||
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
||||||
|
|
||||||
|
settingsExample = {
|
||||||
|
only_in_normal_buffers = false;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.mini-trailspace.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
example = {
|
||||||
|
plugins.mini-trailspace = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
only_in_normal_buffers = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue