From f59831b94637a149f73e663dab2b52b26a5bb463 Mon Sep 17 00:00:00 2001 From: awkawb Date: Fri, 15 Aug 2025 17:56:26 -0400 Subject: [PATCH] Added EditorConfig to repo --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2b1303e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true + +# nix files +[*.nix] +indent_style = space +indent_size = 2 +