mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-11 01:34:32 +02:00
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.
23 lines
472 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|