Files
sdl_template/.editorconfig
Quinn 2dd6344e87 modify indent_size so users can customise it
users can set `tab_size` in their `~/.editorconfig` file, for their
preferred tab rendering width, whilst each indent remains 1 tab.
2025-03-24 10:42:22 +01:00

24 lines
319 B
INI

root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.{rs}]
indent_style = space
indent_size = 4
[*.{c,h,cpp,hpp,rs}]
indent_style = tab
indent_size = tab
[makefile]
indent_style = tab
indent_size = tab
[*.{yaml,json}]
indent_style = space
indent_size = 2