From e896d28dde02a07feda93e29c2157e2a8c4de4c8 Mon Sep 17 00:00:00 2001 From: Soliprem Date: Sun, 22 Sep 2024 20:10:59 +0200 Subject: [PATCH] removed unnecessary imports --- modules/plugins/languages/r.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/plugins/languages/r.nix b/modules/plugins/languages/r.nix index 1b0301dd..4dfe4e3d 100644 --- a/modules/plugins/languages/r.nix +++ b/modules/plugins/languages/r.nix @@ -6,11 +6,9 @@ }: let inherit (builtins) attrNames; inherit (lib.options) mkEnableOption mkOption literalExpression; - inherit (lib.meta) getExe; - inherit (lib.nvim.types) mkGrammarOption; inherit (lib.modules) mkIf mkMerge; inherit (lib.lists) isList; - inherit (lib.types) enum either listOf package str bool; + inherit (lib.types) enum either listOf package str; inherit (lib.nvim.lua) expToLua; cfg = config.vim.languages.r;