diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-05-15 19:47:11 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-05-15 19:55:00 -0700 |
commit | 98a5a63b5228d3eaba55d9833f454f08b925b774 (patch) | |
tree | 066d38d47b15d029d71ab954bbdb55a503911fe3 | |
parent | 0a4c6925b6db433bdb8b9d57c94a7c36be3daea7 (diff) | |
download | pandoc-98a5a63b5228d3eaba55d9833f454f08b925b774.tar.gz |
Fix .editorconfig so Emacs can open zip archives and docx again.
See https://github.com/hlissner/doom-emacs/issues/5057
-rw-r--r-- | .editorconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 4eaaa8c44..c9b4e4e4f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,6 +8,14 @@ indent_size = 2 insert_final_newline = true trim_trailing_whitespace = true +[*.{zip,docx}] +charset = +end_of_line = +indent_style = +indent_size = +insert_final_newline = +trim_trailing_whitespace = + [*.{markdown,md}] trim_trailing_whitespace = false |