From 64593ab666ae3011543daf4997f5555fd6ebcc23 Mon Sep 17 00:00:00 2001 From: lychee Date: Sat, 12 Apr 2025 01:36:12 -0500 Subject: [PATCH] editorconfig: readjust max_line_length for Nix (#116) --- .editorconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index b543c09..ed4779f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,8 +3,11 @@ charset = utf-8 insert_final_newline = true end_of_line = lf indent_style = space -indent_size = 2 max_line_length = 80 [*.rs] indent_size = 4 + +[*.nix] +indent_size = 4 +max_line_length = 120 -- 2.51.2