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;