aboutsummarylogtreecommitdiffstats
path: root/.editorconfig
blob: 91faecdb8879603166a97b9a9a180f00c416438d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

# c/c++ settings
[*.{c,cpp,h,hpp,ipp}]
indent_style = tab
indent_size = 4
charset = utf-8

# 4 space indentation
[*.py]
indent_style = space
indent_size = 4
charset = utf-8

# 2 space indentation
[PKGBUILD]
indent_style = space
indent_size = 2
charset = utf-8