mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 23:42:47 +01:00
17 lines
334 B
Nix
17 lines
334 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "lensline";
|
|
package = "lensline-nvim";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
settingsExample = {
|
|
limits = {
|
|
exclude_gitignored = false;
|
|
max_lines = 500;
|
|
max_lenses = 50;
|
|
};
|
|
debounce_ms = 250;
|
|
focused_debounce_ms = 50;
|
|
};
|
|
}
|