1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-12 03:51:10 +01:00

treewide: remove with lib;

This commit is contained in:
Gaetan Lepage 2025-12-07 12:28:40 +01:00 committed by Gaétan Lepage
parent cd0443e166
commit 629f9d75f8
67 changed files with 276 additions and 338 deletions

View file

@ -1,5 +1,4 @@
{ lib, ... }:
with lib;
lib.nixvim.plugins.mkNeovimPlugin {
name = "lsp-lines";
moduleName = "lsp_lines";
@ -9,10 +8,10 @@ lib.nixvim.plugins.mkNeovimPlugin {
# This plugin has no settings; it is configured via vim.diagnostic.config
hasSettings = false;
maintainers = [ maintainers.MattSturgeon ];
maintainers = [ lib.maintainers.MattSturgeon ];
extraConfig = {
# Strongly recommended by the plugin, to avoid duplication.
diagnostic.settings.virtual_text = mkDefault false;
diagnostic.settings.virtual_text = lib.mkDefault false;
};
}