-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
32 lines (24 loc) · 928 Bytes
/
.gitattributes
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
# -----------------------------------------------
# ---- GitAttributes --------------------------
# ---- https://git-scm.com/docs/gitattributes -
# -----------------------------------------------
# For templates, see
# https://github.com/alexkaratarakis/gitattributes
# -----------------------------------------------
# ---- General --------------------------------
# -----------------------------------------------
* text=auto
*.png -text
*.ico -text
# -----------------------------------------------
# ---- Rust -----------------------------------
# -----------------------------------------------
*.rs text diff=rust
*.toml text diff=toml
*.S text diff=asm
# -----------------------------------------------
# ---- Documents ------------------------------
# -----------------------------------------------
*.md text diff=markdown
*.tex text diff=tex
*.txt text