mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 23:42:47 +01:00
26 lines
637 B
Nix
26 lines
637 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "mini-comment";
|
|
moduleName = "mini.comment";
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
options = {
|
|
custom_commentstring = lib.nixvim.nestedLiteralLua "nil";
|
|
ignore_blank_line = false;
|
|
start_of_line = false;
|
|
pad_comment_parts = true;
|
|
};
|
|
mappings = {
|
|
comment = "gc";
|
|
comment_line = "gcc";
|
|
comment_visual = "gc";
|
|
textobject = "gc";
|
|
};
|
|
hooks = {
|
|
pre = lib.nixvim.nestedLiteralLua "function() end";
|
|
post = lib.nixvim.nestedLiteralLua "function() end";
|
|
};
|
|
};
|
|
}
|