1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-14 21:11:09 +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,19 +1,15 @@
{
lib,
...
}:
with lib;
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "neotest";
description = "An extensible framework for interacting with tests within NeoVim.";
maintainers = [ maintainers.GaetanLepage ];
maintainers = [ lib.maintainers.GaetanLepage ];
imports = [ ./adapters.nix ];
settingsOptions = (import ./settings-options.nix { inherit lib; }) // {
adapters = mkOption {
type = with types; listOf strLua;
adapters = lib.mkOption {
type = with lib.types; listOf strLua;
default = [ ];
# NOTE: We hide this option from the documentation as users should use the top-level
# `adapters` option.