blob: 97c1859f207c669e24f51bb2074fd20b319c1ae1 (
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
30
31
32
33
34
|
# Non-deployed files
/README.md
/venv/
# Compiled files, special OS files
**/*.zwc
**/*.pyc
**/.DS_Store
# Ignore Library/ for non-macOS
{{ if ne .chezmoi.os "darwin" -}} /Library/ {{- end }}
# Ignore OneDrive/ and Documents/ for non-Windows
{{ if ne .chezmoi.os "windows" }}
/OneDrive
/Documents
{{ end }}
{{ if ne .chezmoi.os "darwin" -}}
# Ignore .CFUserTextEncoding for non-macOS
/.CFUserTextEncoding
# Ignore reminders.swift for non-macOS
/.local/bin/reminders.swift
# Ignore run_macos_* for non-macOS
/*macos_*.sh
{{- end }}
# Ignore run_gnome_* for non-GNOME
{{ if not (lookPath "dconf") -}} /*gnome_*.sh {{- end }}
# Ignore all shell scripts on Windows
{{ if eq .chezmoi.os "windows" -}} /*.sh {{- end }}
|