From 2d4f2ed91d52be1ef6961d877053ec7afdb93c1f Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 17 Apr 2023 18:52:35 +0300 Subject: [PATCH] feat: editorconfig support for 0.9.0 --- modules/basic/module.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/basic/module.nix b/modules/basic/module.nix index 7ac5ad76..3fc62d59 100644 --- a/modules/basic/module.nix +++ b/modules/basic/module.nix @@ -139,5 +139,10 @@ with builtins; { default = true; description = "New splits will open to the right"; }; + enableEditorconfig = mkOption { + type = types.bool; + default = false; + description = "Follow editorconfig rules in current directory" + }; }; }