mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-12 10:14:31 +02:00
24 lines
472 B
Nix
24 lines
472 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
||
|
name = "grug-far";
|
||
|
originalName = "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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|