mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-01 08:34:41 +02:00
plugins/*: use new mkSettingsRenamedOptionModules
This commit is contained in:
parent
0ddf6e39ac
commit
c179d47d3d
37 changed files with 1176 additions and 1510 deletions
156
plugins/by-name/gitsigns/renamed-options.nix
Normal file
156
plugins/by-name/gitsigns/renamed-options.nix
Normal file
|
@ -0,0 +1,156 @@
|
|||
[
|
||||
[
|
||||
"signs"
|
||||
"add"
|
||||
"text"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"add"
|
||||
"showCount"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"change"
|
||||
"text"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"change"
|
||||
"showCount"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"topdelete"
|
||||
"text"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"topdelete"
|
||||
"showCount"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"changedelete"
|
||||
"text"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"changedelete"
|
||||
"showCount"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"untracked"
|
||||
"text"
|
||||
]
|
||||
[
|
||||
"signs"
|
||||
"untracked"
|
||||
"showCount"
|
||||
]
|
||||
"worktrees"
|
||||
"signPriority"
|
||||
"signcolumn"
|
||||
"numhl"
|
||||
"linehl"
|
||||
"showDeleted"
|
||||
[
|
||||
"diffOpts"
|
||||
"algorithm"
|
||||
]
|
||||
[
|
||||
"diffOpts"
|
||||
"internal"
|
||||
]
|
||||
[
|
||||
"diffOpts"
|
||||
"indentHeuristic"
|
||||
]
|
||||
[
|
||||
"diffOpts"
|
||||
"vertical"
|
||||
]
|
||||
[
|
||||
"diffOpts"
|
||||
"linematch"
|
||||
]
|
||||
"base"
|
||||
"countChars"
|
||||
"maxFileLength"
|
||||
"previewConfig"
|
||||
"attachToUntracked"
|
||||
"updateDebounce"
|
||||
"currentLineBlame"
|
||||
[
|
||||
"currentLineBlameOpts"
|
||||
"virtText"
|
||||
]
|
||||
[
|
||||
"currentLineBlameOpts"
|
||||
"virtTextPos"
|
||||
]
|
||||
[
|
||||
"currentLineBlameOpts"
|
||||
"delay"
|
||||
]
|
||||
[
|
||||
"currentLineBlameOpts"
|
||||
"ignoreWhitespace"
|
||||
]
|
||||
[
|
||||
"currentLineBlameOpts"
|
||||
"virtTextPriority"
|
||||
]
|
||||
"trouble"
|
||||
"wordDiff"
|
||||
"debugMode"
|
||||
{
|
||||
old = [
|
||||
"onAttach"
|
||||
"function"
|
||||
];
|
||||
new = "on_attach";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"watchGitDir"
|
||||
"enable"
|
||||
];
|
||||
new = [
|
||||
"watch_gitdir"
|
||||
"enable"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"watchGitDir"
|
||||
"followFiles"
|
||||
];
|
||||
new = [
|
||||
"watch_gitdir"
|
||||
"follow_files"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"statusFormatter"
|
||||
"function"
|
||||
];
|
||||
new = "status_formatter";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"currentLineBlameFormatter"
|
||||
"normal"
|
||||
];
|
||||
new = "current_line_blame_formatter";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"currentLineBlameFormatter"
|
||||
"nonCommitted"
|
||||
];
|
||||
new = "current_line_blame_formatter_nc";
|
||||
}
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue