From 78f5f36738af40cce4fd0cb23e10fec70fe1b3f2 Mon Sep 17 00:00:00 2001 From: *Kim Zick Date: Thu, 1 Dec 2022 18:15:21 -0500 Subject: [PATCH] fix: basic flake check should work now (#74) --- plugins/completion/lspkind.nix | 3 ++- plugins/nvim-lsp/trouble.nix | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/completion/lspkind.nix b/plugins/completion/lspkind.nix index 7ed148e1..6ee84f09 100644 --- a/plugins/completion/lspkind.nix +++ b/plugins/completion/lspkind.nix @@ -1,7 +1,8 @@ -{ config, pkgs, lib, helpers, ... }: +{ config, pkgs, lib, ... }: with lib; let cfg = config.plugins.lspkind; + helpers = import ../helpers.nix { inherit lib; }; in { options.plugins.lspkind = { diff --git a/plugins/nvim-lsp/trouble.nix b/plugins/nvim-lsp/trouble.nix index ccb0fd9d..c21f41bb 100644 --- a/plugins/nvim-lsp/trouble.nix +++ b/plugins/nvim-lsp/trouble.nix @@ -1,6 +1,7 @@ -{ config, pkgs, lib, helpers, ... }: +{ config, pkgs, lib, ... }: let cfg = config.plugins.trouble; + helpers = import ../helpers.nix { inherit lib; }; in with lib; # with helpers;