diff --git a/languages/bash.editor_config b/languages/bash.editor_config
new file mode 100644
index 0000000000000000000000000000000000000000..21b855f472e35379f25be0478b208d95deca3e16
--- /dev/null
+++ b/languages/bash.editor_config
@@ -0,0 +1,37 @@
+###
+ # EditorConfig file for Bash Script Language projects.
+ # See https://editorconfig.org/ for documentation.
+ #
+ # https://git.brandon-rodriguez.com/other/editorconfig
+ # Version 1.0
+ ##
+
+
+# Stop editorconfig from searching further above current directory.
+root = true
+
+
+###
+ # Default styles for all files.
+ ##
+[*]
+charset = utf-8
+end_of_line = lf
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+
+###
+ # Tab styles that should be four spaces per tab.
+ # Most languages will fall under this.
+ ##
+[*.sh]
+indent_size = 4
+
+
+###
+ # Tab styles that should be two spaces per tab.
+ # Only very nested languages should be put here.
+ ##
+# None so far.