mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
18 lines
553 B
Nix
18 lines
553 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "lsp-lines";
|
|
moduleName = "lsp_lines";
|
|
package = "lsp_lines-nvim";
|
|
description = "A simple neovim plugin that renders diagnostics using virtual lines on top of the real line of code.";
|
|
|
|
# This plugin has no settings; it is configured via vim.diagnostic.config
|
|
hasSettings = false;
|
|
|
|
maintainers = [ maintainers.MattSturgeon ];
|
|
|
|
extraConfig = {
|
|
# Strongly recommended by the plugin, to avoid duplication.
|
|
diagnostic.settings.virtual_text = mkDefault false;
|
|
};
|
|
}
|