mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
17 lines
305 B
Nix
17 lines
305 B
Nix
{
|
|
empty = {
|
|
plugins.inc-rename.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.inc-rename = {
|
|
enable = true;
|
|
cmdName = "IncRename";
|
|
hlGroup = "Substitute";
|
|
previewEmptyName = false;
|
|
showMessage = true;
|
|
inputBufferType = null;
|
|
postHook = null;
|
|
};
|
|
};
|
|
}
|