1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-17 22:41:13 +01:00

plugins/gitgutter: remove dead file

This commit is contained in:
Gaetan Lepage 2025-12-14 15:20:38 +01:00 committed by Gaétan Lepage
parent c97e8e3425
commit 4aaa440f58

View file

@ -1,70 +0,0 @@
lib:
[
"maxSigns"
{
old = "showMessageOnHunkJumping";
new = "show_msg_on_hunk_jumping";
}
{
old = "defaultMaps";
new = "map_keys";
}
{
old = "allowClobberSigns";
new = "sign_allow_clobber";
}
"signPriority"
{
old = "matchBackgrounds";
new = "set_sign_backgrounds";
}
{
old = "diffRelativeToWorkingTree";
new = "diff_relative_to";
}
{
old = "extraGitArgs";
new = "git_args";
}
{
old = "extraDiffArgs";
new = "diff_args";
}
{
old = "enableByDefault";
new = "enabled";
}
{
old = "signsByDefault";
new = "signs";
}
"highlightLines"
{
old = "highlightLineNumbers";
new = "highlight_linenrs";
}
{
old = "runAsync";
new = "async";
}
"previewWinFloating"
"useLocationList"
"terminalReportFocus"
]
++
lib.mapAttrsToList
(oldName: newName: {
old = [
"signs"
oldName
];
new = "sign_${newName}";
})
{
added = "added";
modified = "modified";
removed = "removed";
removedFirstLine = "removed_first_line";
removedAboveAndBelow = "removed_above_and_below";
modifiedRemoved = "modified_removed";
}