From ee7f6b703a66647e3881c3922f3a506fbeb5a75e Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 11 Feb 2024 13:58:53 +0100 Subject: [PATCH] plugins/emmet: remove to strict typing on option 'mode' --- plugins/utils/emmet.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/utils/emmet.nix b/plugins/utils/emmet.nix index cf108918..e7a63cdd 100644 --- a/plugins/utils/emmet.nix +++ b/plugins/utils/emmet.nix @@ -14,8 +14,7 @@ with helpers.vim-plugin; options = { mode = mkDefaultOpt { - type = types.enum ["i" "n" "v" "a"]; - global = "mode"; + type = types.str; description = "Mode where emmet will enable"; };