From 07469bddbbb4f7e9cf3a09ac60412d53fbdd23f3 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Tue, 30 Jan 2024 01:28:39 -0500 Subject: [PATCH] Update editor config for odin support --- .editorconfig | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e1f1b1d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,25 @@ +root = true + +[*.refactor] +indent_style = space +indent_size = 4 + +[*.md] +indent_style = space +indent_size = 4 + +[*.{h, c, hpp, cpp}] +indent_style = tab +indent_size = 4 + +[*.{ps1, psm1}] +indent_style = tab +indent_size = 4 + +[*.odin] +indent_style = tab +indent_size = 2 + +[*.{natvis, natstepfilter}] +indent_style = tab +indent_size = 4