2018-08-21 12:35:28 +02:00
|
|
|
# EditorConfig is a file format and collection of text editor plugins
|
|
|
|
# for maintaining consistent coding styles between different editors
|
|
|
|
# and IDEs. Most popular editors support this either natively or via
|
|
|
|
# plugin.
|
|
|
|
#
|
|
|
|
# Check https://editorconfig.org for details.
|
2021-03-05 15:48:39 +01:00
|
|
|
#
|
|
|
|
# Emacs: you need https://github.com/10sr/editorconfig-custom-majormode-el
|
|
|
|
# to automatically enable the appropriate major-mode for your files
|
|
|
|
# that aren't already caught by your existing config.
|
|
|
|
#
|
2018-08-21 12:35:28 +02:00
|
|
|
|
2017-07-17 12:15:47 +02:00
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
charset = utf-8
|
|
|
|
|
2018-08-21 12:35:28 +02:00
|
|
|
[*.mak]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 8
|
2021-03-05 15:48:39 +01:00
|
|
|
emacs_mode = makefile
|
2018-08-21 12:35:28 +02:00
|
|
|
|
2017-07-17 12:15:47 +02:00
|
|
|
[Makefile*]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 8
|
2021-03-05 15:48:39 +01:00
|
|
|
emacs_mode = makefile
|
2017-07-17 12:15:47 +02:00
|
|
|
|
2020-02-04 12:41:01 +01:00
|
|
|
[*.{c,h,c.inc,h.inc}]
|
2017-07-17 12:15:47 +02:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
2021-03-05 15:48:39 +01:00
|
|
|
emacs_mode = c
|
2018-08-21 12:35:28 +02:00
|
|
|
|
2019-05-30 11:40:28 +02:00
|
|
|
[*.sh]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
2019-05-08 15:42:51 +02:00
|
|
|
[*.{s,S}]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 8
|
2021-03-05 15:48:39 +01:00
|
|
|
emacs_mode = asm
|
2019-05-08 15:42:51 +02:00
|
|
|
|
2018-08-21 12:35:28 +02:00
|
|
|
[*.{vert,frag}]
|
2021-03-05 15:48:39 +01:00
|
|
|
emacs_mode = glsl
|
2018-08-21 12:35:28 +02:00
|
|
|
|
|
|
|
[*.json]
|
|
|
|
indent_style = space
|
2021-03-05 15:48:39 +01:00
|
|
|
emacs_mode = python
|