-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy patheditorconfig
More file actions
34 lines (28 loc) · 799 Bytes
/
editorconfig
File metadata and controls
34 lines (28 loc) · 799 Bytes
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
30
31
32
33
34
# editorconfig: part of the 4U6U57/dotfiles project
# Root file for setting editor configurations for various file types
# Check out http://EditorConfig.org for documentation
# TODO: If you modify this file to suit your own needs, you MUST modify
# the following line or the VimrcUpdate script will revert your changes
# OVERWRITE: true
# If this is not your ~ directory, delete the following line
root = true
# Unix-style newlines with a newline ending every file
[{*,.*}]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
max_line_length = 80
[{Makefile,makefile,*.mk}]
indent_style = tab
indent_size = 2
[*.md]
indent_style = space
indent_size = 2
max_line_length = 80
[*.sh]
max_line_length = 0
[*.py]
indent_style = tab
indent_size = 4
max_line_length = 0