-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.chezmoiignore
95 lines (85 loc) · 3.29 KB
/
.chezmoiignore
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
###############################################################################
# Ignore documentation and temporary files
###############################################################################
docs/
###############################################################################
# Ignore files that should be copied manually
###############################################################################
unmanaged/
###############################################################################
# Ignore VCS boilerplates, temporary files, general information
###############################################################################
.github/
LICENSE
README.md
TODO.md
###############################################################################
# Ignore development and testing tooling
###############################################################################
Makefile.toml
###############################################################################
# Ignore *Nix specific files on Windows
###############################################################################
# NOTE: .bashrc, .bash_profile, .inputrc, .bash/, .shell/aliases.sh are still
# added to be used with Git Bash on Windows
{{ if eq .chezmoi.os "windows" }}
.bash_completion
.config/
.scripts/nix/
.shell/env.sh
.xinitrc
.Xmodmap
.Xresources
setup.sh
{{ end }}
###############################################################################
# Ignore Linux specific files on MacOS and Windows
###############################################################################
{{ if (ne .chezmoi.os "linux") -}}
.config/Code
{{ end }}
###############################################################################
# Ignore Linux specific files on MacOS, Windows or Linux running KDE
###############################################################################
{{ if (or (ne .chezmoi.os "linux") (eq .host.desktop_environment "kde")) }}
.config/bumblebee-status/
.config/i3/
.config/picom/
.config/user-dirs.dirs
.config/zathura/
.scripts/nix/i3wm_lock_screen
.scripts/nix/i3wm_make_screenshot
.xinitrc
.Xresources
pictures/
{{ end }}
###############################################################################
# Ignore Linux laptop specific files on all other platforms
###############################################################################
{{ if (or (ne .host.chassis_type "laptop") (ne .host.chassis_type "linux")) }}
.scripts/nix/mxergoconf
.Xmodmap
{{ end }}
###############################################################################
# Ignore Linux VM specific files on all other platforms
###############################################################################
{{ if ne .host.chassis_type "vm" }}
.scripts/nix/vmware-mount-shares
{{ end }}
###############################################################################
# Ignore MacOS specific files on Linux and Windows
###############################################################################
{{ if ne .chezmoi.os "darwin" }}
.scripts/macos
.bash_completion
Library/
{{ end }}
###############################################################################
# Ignore Windows specific files on Linux and MacOS
###############################################################################
{{ if ne .chezmoi.os "windows" }}
_vimrc
setup.ps1
AppData/
Documents/
{{ end }}