1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-07 17:41:04 +01:00
nixvim/plugins/by-name/lensline/default.nix
Austin Horstman e6958a9699 lensline: add module
Modular nvim codelens support with inline references, git blame and more
2025-09-17 18:22:48 +00:00

18 lines
368 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "lensline";
packPathName = "lensline.nvim";
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;
};
}