diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-05-08 14:42:51 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-05-28 10:28:51 +0100 |
commit | 9699e5fb5a3aaa92fbe531ea83a38c7e35b8ba44 (patch) | |
tree | f894209922069898f90a6f96b5a000916cb64c8f | |
parent | 49d755d02ef24df43747bbbbfd073f347f343ddf (diff) |
editorconfig: add settings for .s/.S files
We are starting to add assembler foe tests/tcg so lets make sure we
get the mode right.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | .editorconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 1582883393..df6db65531 100644 --- a/.editorconfig +++ b/.editorconfig @@ -26,6 +26,11 @@ file_type_emacs = makefile indent_style = space indent_size = 4 +[*.{s,S}] +indent_style = tab +indent_size = 8 +file_type_emacs = asm + [*.{vert,frag}] file_type_emacs = glsl |