From 030b20da7d5321f8d9ecb62aa5b345b5365455f1 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 17 May 2024 02:25:00 +0300 Subject: [PATCH] modules/neoformat: change pattern type to commas --- modules/plugins/style/neoformat.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/plugins/style/neoformat.nix b/modules/plugins/style/neoformat.nix index 77181fa..6caecea 100644 --- a/modules/plugins/style/neoformat.nix +++ b/modules/plugins/style/neoformat.nix @@ -26,7 +26,7 @@ let cfg = config.plugins.style.neoformat; in autoformat = { enable = mkEnableOption "Autoformat on save file"; pattern = { - type = types.commas; + type = commas; default = "*"; }; };