mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "tinygit";
|
|
packPathName = "nvim-tinygit";
|
|
package = "nvim-tinygit";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
extraConfig = cfg: {
|
|
dependencies = {
|
|
curl.enable = lib.mkDefault true;
|
|
git.enable = lib.mkDefault true;
|
|
};
|
|
};
|
|
|
|
settingsExample = {
|
|
stage.moveToNextHunkOnStagingToggle = true;
|
|
commit = {
|
|
keepAbortedMsgSecs.__raw = "60 * 10";
|
|
spellcheck = true;
|
|
subject = {
|
|
autoFormat.__raw = ''
|
|
function(subject)
|
|
-- remove trailing dot https://commitlint.js.org/reference/rules.html#body-full-stop
|
|
subject = subject:gsub("%.$", "")
|
|
|
|
-- sentence case of title after the type
|
|
subject = subject
|
|
:gsub("^(%w+: )(.)", function(c1, c2) return c1 .. c2:lower() end) -- no scope
|
|
:gsub("^(%w+%b(): )(.)", function(c1, c2) return c1 .. c2:lower() end) -- with scope
|
|
return subject
|
|
end
|
|
'';
|
|
enforceType = true;
|
|
};
|
|
};
|
|
statusline = {
|
|
blame = {
|
|
hideAuthorNames = [
|
|
"John Doe"
|
|
"johndoe"
|
|
];
|
|
ignoreAuthors = [ "🤖 automated" ];
|
|
maxMsgLen = 55;
|
|
};
|
|
};
|
|
};
|
|
}
|