-
Notifications
You must be signed in to change notification settings - Fork 5
/
.chezmoiignore.tmpl
155 lines (131 loc) · 2.56 KB
/
.chezmoiignore.tmpl
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
.git*
PKGBUILDS
**/*.src.ini
{{- if (not .isHacking) }}
.local/applications/ida.desktop
{{ end }}
{{- if ne .chezmoi.os "windows" }}
**/*.lnk
**/*.bat
**/*.ps1
Documents
AppData
.glaze-wm
{{- else if and ( ne .chezmoi.os "linux" ) ( ne .chezmoi.os "darwin" )}}
**/*.sh
.local/share/*
.bash_history
.bashrc
symlink*
symlink*
{{ end }}
# I anyways populate manually so don't litter $HOME
dconf_overrides.keyfile
Dockerfile
# confs/
pyproject.toml
README.md
install.sh
*requirements.txt
docs
.chezmoiscripts/*/**
#!.chezmoiscripts/universal/**
# powertoys logs and versions
**/*Logs*
**/*_version.txt
# notes
*.notes
# Monitor arrangement
.config/hypr/monitors.conf
# VSCODE workspace
.vscode/*
.vscode/settings.json
.vscode/tasks.json
.vscode/launch.json
.vscode/extensions.json
*.code-workspace
# Exclude for security reasons
.history/
.dccache
.env
# Zsh compiled script + zrecompile backup
*.zwc
*.zwc.old
# Zsh completion-optimization dumpfile
*zcompdump*
# Zsh zcalc history
.zcalc_history
# A popular plugin manager's files
._zi
._zinit
._zplugin
.zi_lastupd
.zinit_lastupd
.zplugin_lstupd
# z-shell/zshelldoc tool's files
zsdoc/data
docs/zsdoc/data
# Python
**/__pycache__/
**/*.pyc
**/.venv/
# Nodejs
**/node_modules/
**/package-lock.json
**/package.json
.keep
**/*.log
# ohmyzsh/ohmyzsh/plugins/per-directory-history plugin's files
# (when set-up to store the history in the local directory)
.directory_history
.config/zsh/antigen/
.config/zsh/cache/
.config/zsh/.zinit/**
.config/zsh/zoxide/**
.config/zsh/zsh_history.zsh
.config/zsh/ecsc/
.config/zsh/.zfunc/ataka.py
# Temporary stuff probably not needed
**/tmp/**
**/temp/**
# Mypy
**/.mypy_cache
{{- if not .isPersonal }}
VMs
.local/share/applications/AtlasOS.desktop
Courses
Documents
HACKING
School
Pictures/Screenshots
.ssh/config
.ssh/keys/pwncollege
.ssh/keys/portainer
.ssh/keys/eserver-local
.ssh/keys/git
.ssh/keys/ecsc
.ssh/keys/c2
{{- else }}
# Only create ssh keys if they don't exist
{{- if stat (joinPath .chezmoi.homeDir ".ssh/config") }}
.ssh/config
{{- end }}
{{- if stat (joinPath .chezmoi.homeDir ".ssh/keys/pwncollege") }}
.ssh/keys/pwncollege
{{- end }}
{{- if stat (joinPath .chezmoi.homeDir ".ssh/keys/portainer") }}
.ssh/keys/portainer
{{- end }}
{{- if stat (joinPath .chezmoi.homeDir ".ssh/keys/eserver-local") }}
.ssh/keys/eserver-local
{{- end }}
{{- if stat (joinPath .chezmoi.homeDir ".ssh/keys/git") }}
.ssh/keys/git
{{- end }}
{{- if stat (joinPath .chezmoi.homeDir ".ssh/keys/ecsc") }}
.ssh/keys/ecsc
{{- end }}
{{- if stat (joinPath .chezmoi.homeDir ".ssh/keys/c2") }}
.ssh/keys/c2
{{- end }}
{{- end }}