nix-community.nixvim/plugins/by-name/grug-far/default.nix
Austin Horstman a7012e7864
treewide: originalName -> packPathName
We used to only think of it as the plugin repo's name, but we have been
needing to use it for the name of the plugin's packpath location.
2024-12-13 21:29:00 -06:00

23 lines
472 B
Nix

{ lib, ... }:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "grug-far";
packPathName = "grug-far.nvim";
package = "grug-far-nvim";
maintainers = [ lib.maintainers.khaneliman ];
settingsExample = {
debounceMs = 1000;
minSearchChars = 1;
maxSearchMatches = 2000;
normalModeSearch = false;
maxWorkers = 8;
engine = "ripgrep";
engines = {
ripgrep = {
path = "rg";
showReplaceDiff = true;
};
};
};
}