mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 18:58:43 +02:00
plugins/grug-far: init
This commit is contained in:
parent
54b1d91299
commit
2844c31655
2 changed files with 80 additions and 0 deletions
23
plugins/by-name/grug-far/default.nix
Normal file
23
plugins/by-name/grug-far/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue