Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

grug-far

URL: https://github.com/MagicDuck/grug-far.nvim

Maintainers: Austin Horstman


Find And Replace plugin for Neovim.

plugins.grug-far.enable

Whether to enable grug-far.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.grug-far.package

The grug-far package to use.

Type: package

Default:

pkgs.vimPlugins.grug-far-nvim

Declared by:

plugins.grug-far.autoLoad

Whether to automatically load grug-far when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.grug-far.settings

Options provided to the require('grug-far').setup function.

Type: lua value

Default:

{ }

Example:

{
  debounceMs = 1000;
  engine = "ripgrep";
  engines = {
    ripgrep = {
      path = "rg";
      showReplaceDiff = true;
    };
  };
  maxSearchMatches = 2000;
  maxWorkers = 8;
  minSearchChars = 1;
  normalModeSearch = false;
}

Declared by: