From b6ecc7f19c159f69ae1a000fa2c6a105f99df18c Mon Sep 17 00:00:00 2001 From: Poseidon Date: Sun, 17 Aug 2025 17:22:31 -0500 Subject: [PATCH] languages/html: reorder parameters for consistency --- modules/plugins/languages/html.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/plugins/languages/html.nix b/modules/plugins/languages/html.nix index 96dc9472..bcc6b842 100644 --- a/modules/plugins/languages/html.nix +++ b/modules/plugins/languages/html.nix @@ -49,9 +49,9 @@ in { enable = mkEnableOption "HTML treesitter support" // {default = config.vim.languages.enableTreesitter;}; package = mkGrammarOption pkgs "html"; autotagHtml = mkOption { - description = "Enable autoclose/autorename of html tags (nvim-ts-autotag)"; type = bool; default = true; + description = "Enable autoclose/autorename of html tags (nvim-ts-autotag)"; }; }; @@ -68,15 +68,15 @@ in { enable = mkEnableOption "HTML formatting" // {default = config.vim.languages.enableFormat;}; type = mkOption { - description = "HTML formatter to use"; type = enum (attrNames formats); default = defaultFormat; + description = "HTML formatter to use"; }; package = mkOption { - description = "HTML formatter package"; type = package; default = formats.${cfg.format.type}.package; + description = "HTML formatter package"; }; };