-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample
More file actions
34 lines (31 loc) · 737 Bytes
/
config.sample
File metadata and controls
34 lines (31 loc) · 737 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
# Copy the settings you want to
# your local .git/config file
# or your global git config
[diff "exif"]
textconv=exiftool
cachetextconv = true
[diff "wrap"]
textconv=fmt
[diff "jpg"]
textconv=jp2a --width=80
cachetextconv = true
[diff "pandoc2md"]
textconv=pandoc --to=markdown
[diff "pdfconv"]
textconv=pdftohtml -stdout
[diff "secret"]
textconv=perl -pe 'tr/N-ZA-Mn-za-m/A-Za-z/'
[diff "color"]
textconv=pygmentize -O style=native
[diff "mp3"]
textconv=mp3info -x
[diff "zipshow"]
textconv=unzip -c -a
[diff "ziplist"]
textconv=unzip -l
[filter "cleanpython"]
clean = yapf
smudge = cat
[filter "secret"]
clean = ruby -ne 'print $_.tr( \"A-Za-z\", \"N-ZA-Mn-za-m\") '
smudge = perl -pe 'tr/N-ZA-Mn-za-m/A-Za-z/'