From 9cded6f6c2a51f914448a58f43d12dc1cca8f3a7 Mon Sep 17 00:00:00 2001 From: isaacST08 Date: Sat, 18 Jan 2025 19:56:41 -0700 Subject: [PATCH] Fix import on the wrong line --- modules/plugins/languages/tex.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/plugins/languages/tex.nix b/modules/plugins/languages/tex.nix index b98ea26e..dd0f7910 100644 --- a/modules/plugins/languages/tex.nix +++ b/modules/plugins/languages/tex.nix @@ -20,8 +20,8 @@ }: let inherit (lib.options) mkEnableOption mkOption; - inherit (lib.modules) mkIf mkMerge listOf; - inherit (lib.types) package str bool; + inherit (lib.modules) mkIf mkMerge; + inherit (lib.types) package str bool listOf; inherit (lib.nvim.types) mkGrammarOption; inherit (builtins) any attrValues;