mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
14 lines
233 B
Nix
14 lines
233 B
Nix
{
|
|
empty = {
|
|
plugins.lsp-lines.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.lsp-lines.enable = true;
|
|
|
|
diagnostic.settings.virtual_lines = {
|
|
only_current_line = true;
|
|
highlight_whole_line = false;
|
|
};
|
|
};
|
|
}
|