1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-09 02:21:07 +01:00
nixvim/plugins/by-name/lsp-lines/default.nix
2025-12-07 22:46:34 +00:00

17 lines
551 B
Nix

{ 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 = [ lib.maintainers.MattSturgeon ];
extraConfig = {
# Strongly recommended by the plugin, to avoid duplication.
diagnostic.settings.virtual_text = lib.mkDefault false;
};
}