lensline: add module

Modular nvim codelens support with inline references, git blame and more
This commit is contained in:
Austin Horstman 2025-09-16 18:06:20 -05:00
parent 3e8c4c802c
commit e6958a9699
2 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ 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;
};
}