2024-12-11 16:05:41 -06:00
|
|
|
{ lib, ... }:
|
2024-12-22 09:58:27 +00:00
|
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
2024-12-11 16:05:41 -06:00
|
|
|
name = "grug-far";
|
2024-12-13 08:27:14 -06:00
|
|
|
packPathName = "grug-far.nvim";
|
2024-12-11 16:05:41 -06:00
|
|
|
package = "grug-far-nvim";
|
2025-06-18 02:42:47 +03:00
|
|
|
description = "Find And Replace plugin for Neovim.";
|
2024-12-11 16:05:41 -06:00
|
|
|
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
|
|
|
|
settingsExample = {
|
|
|
|
debounceMs = 1000;
|
|
|
|
minSearchChars = 1;
|
|
|
|
maxSearchMatches = 2000;
|
|
|
|
normalModeSearch = false;
|
|
|
|
maxWorkers = 8;
|
|
|
|
engine = "ripgrep";
|
|
|
|
engines = {
|
|
|
|
ripgrep = {
|
|
|
|
path = "rg";
|
|
|
|
showReplaceDiff = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|