-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
205 lines (186 loc) · 3.15 KB
/
.gitignore
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# Only match .*
/*
!/.*
# Ignore default dotfiles. Even though these are covered by .config/git/ignore
# we need to re-ignore them here because the !/.* above un-ignores them.
.*.pyc
.*.sw[a-z]
.sw[a-z]
.*.un~
__pycache__
*.pyc
# Ignore the gitdir of this repo.
/.dotfiles
/.dotfiles.git
# Top-level files and directories that I don't care about.
/.Braid
/.ICEauthority
/.Xauthority*
/.adobe
/.android
/.appcfg_nag
/.apport-ignore.xml
/.aptitude
/.aspell.*
/.audacity-data
/.avidemux
/.bash_history
/.bundle
/.bzr.log
/.cache
/.cargo
/.compiz
/.compiz-1
/.composer
/.cups
/.dbus
/.dmrc
/.eclipse
/.fltk
/.fontconfig
/.gdb_history
/.gegl-0.0
/.gem
/.gimp-?.?
/.gitignore.swp
/.gitk
/.gksu.lock
/.gmc-sync-nssdb.log
/.gnome
/.gnome2
/.gnome2_private
/.goutputstream-*
/.gstreamer-0.10
/.gsutil
/.gtk-bookmarks
/.gvfs
/.history
/.irssi
/.java
/.kde
/.lesshst
/.linuxmint/mintMenu
/.local
/.macromedia
/.mcoprc
/.mission-control
/.mono
/.mozc
/.news_time
/.node_repl_history
/.npm
/.nv
/.nvidia-settings-rc
/.nviminfo
/.nvimlog
/.openshot
/.pam_environment
/.pip
/.pki
/.psi
/.pulse
/.pulse-cookie
/.python_history
/.qt
/.rnd
/.rustup
/.selected_editor
/.speech-dispatcher
/.sqlite_history
/.ssl_vpn_request.yml
/.steam
/.steampath
/.steampid
/.sudo_as_admin_successful
/.swp
/.swt
/.thumbnails
/.tmp
/.uim.d
/.viminfo
/.wavemonrc
/.wget-hsts
/.wireshark
/.xfce4-session.verbose-log
/.xfce4-session.verbose-log.last
/.xinputrc
/.xscreensaver
/.xsel.log
/.xsession-errors
/.xsession-errors.old
/.ycm_extra_conf.py
/.zcompdump
/.zcompdumps
/.zhistfile
/.zsnes
# Saved games or other big directories not appropriate for dotfiles.git
/.PlayOnLinux
/.VirtualBox
/.crawl
/.dosbox
/.scummvmrc
/.t-engine
/.wine
/.vvvvvv
# No longer needed.
/.mozilla
# Top-level directories that might contain some useful configuration, but I am
# just too lazy to try to extract the important bits from all the cruft.
/.mateconf
/.mateconfd
/.matplotlib
/.qalculate
/.xchat2
# Sensitive files and directories that should never be checked in.
/.TrueCrypt
/.VeraCrypt
/.appcfg_cookies
/.appcfg_oauth2_tokens
/.gnupg
/.lastpass
/.netrc
/.netrw
/.nzbget
# We only care about some things in gconf.
/.gconf
!/.gconf/apps/gnome-terminal
# Ignore temp / cache files and directories.
/.curl/cookies
/.grip/cache-*
/.grip/venv
/.nx/temp
/.scummvm/logs
/.vim/.netrwhist
/.vim/cache
/.vim/spell
/.zsh/cache
# Ignore vim bundles, which can be downloaded again.
/.vim/plugged
# The log file is created by YCM, I think.
/.vim/data/log
# Only track specific files in some directories.
/.ssh/*
!/.ssh/config
# The .config mostly has crap we don't care about, but there are a few
# important things in there.
/.config/*
!/.config/user-dirs.*
/.ipython/Crash_report_ipython.txt
/.ipython/profile_default/db
/.ipython/profile_default/history.sqlite
/.ipython/profile_default/log
/.ipython/profile_default/pid
/.ipython/profile_default/security
/.ipython/profile_default/static
!/.config/git
!/.config/mpv
!/.config/xfce4
/.config/xfce4/*
!/.config/xfce4/terminal
# Even though ~/local/bin are not dotfiles, I usually want them whenever I want
# dotfiles.
!/local
/local/*
!/local/bin
/local/bin/.gitignore
# May care about /.config/menus/ one day.