summary refs log tree commit diff
path: root/.editorconfig
diff options
context:
space:
mode:
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..2d185af
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,23 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+max_line_length = 100
+trim_trailing_whitespace = true
+
+[justfile]
+indent_size = 4
+indent_style = space
+
+[*.{md,nix}]
+indent_size = 2
+indent_style = space
+
+[*.md]
+max_line_length = 80
+
+[{.envrc,flake.lock}]
+# We really don't care for this file
+max_line_length = 1000