lensline: add module
Modular nvim codelens support with inline references, git blame and more
This commit is contained in:
parent
3e8c4c802c
commit
e6958a9699
2 changed files with 76 additions and 0 deletions
18
plugins/by-name/lensline/default.nix
Normal file
18
plugins/by-name/lensline/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue