nix-community.nixvim/plugins/by-name/grug-far/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
472 B
Nix
Raw Normal View History

2024-12-11 16:05:41 -06:00
{ lib, ... }:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "grug-far";
packPathName = "grug-far.nvim";
2024-12-11 16:05:41 -06:00
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;
};
};
};
}