diff --git a/plugins/by-name/hmts/default.nix b/plugins/by-name/hmts/default.nix index 6762f508..42ac9da6 100644 --- a/plugins/by-name/hmts/default.nix +++ b/plugins/by-name/hmts/default.nix @@ -1,6 +1,5 @@ { lib, - helpers, config, pkgs, ... @@ -24,9 +23,9 @@ in }; config = mkIf cfg.enable { - warnings = optional (!config.plugins.treesitter.enable) [ - "Nixvim: hmts needs treesitter to function as intended" - ]; + warnings = optional ( + !config.plugins.treesitter.enable + ) "Nixvim: hmts needs treesitter to function as intended"; extraPlugins = [ cfg.package ]; };