nix-community.nixvim/tests/test-sources/plugins/lsp/lsp-lines.nix
Matt Sturgeon 7dcdd6e989
plugins/lsp-lines: switch to mkNeovimPlugin
Remove custom options in favor of using `diagnostics` directly.
2024-06-28 23:14:01 +01:00

14 lines
225 B
Nix

{
empty = {
plugins.lsp-lines.enable = true;
};
example = {
plugins.lsp-lines.enable = true;
diagnostics.virtual_lines = {
only_current_line = true;
highlight_whole_line = false;
};
};
}