-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
216 lines (194 loc) · 4.77 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
206
207
208
209
210
211
212
213
214
215
216
# Used by some scripts in ./bin, such as manh and manp
/caches/
# Ignore the local directory, but track .gitkeep so it's included in the repo.
/local/*
!/local/.keep
# Ignore known possible .local versions of dotfiles
#
# These ideally wouldn't be added to the repository, but gitignoring in case
# they ever are.
.bashenv.local
.bashrc.local
.gitconfig.local
.hgrc.local
.psqlrc.local
.shared_env.local
.zshenv.local
.zshrc.local
# Ignore all .vagrant directories.
.vagrant
# home/.ammonite
#
# Only track predef.scala
/home/.ammonite/*
!/home/.ammonite/predef.scala
# home/.atom
#
# Only track specific atom config files
/home/.atom/*
!/home/.atom/config.cson
!/home/.atom/dev
!/home/.atom/init.coffee
!/home/.atom/keymap.cson
!/home/.atom/snippets.cson
!/home/.atom/styles.less
# home/.aws
#
# Only track home/.aws Readme
/home/.aws/*
!/home/.aws/Readme.md
# home/.bpkg
#
# Only track home/.bpkg Readme
/home/.bpkg/*
!/home/.bpkg/Readme.md
# home/.cabal
#
# Only track specific .cabal files
#
# Include example config and help files only.
/home/.cabal/*
!/home/.cabal/config.template
!/home/.cabal/generate_config.sh
!/home/.cabal/README.md
!/home/.cabal/where-is-my-stuff.txt
# home/.config
#
# Only track specific .config files
/home/.config/*
# base16-shell
!/home/.config/base16-shell
# Visual Studio Code
!/home/.config/Code
/home/.config/Code/*
!/home/.config/Code/README.md
!/home/.config/Code/User
/home/.config/Code/User/*
!/home/.config/Code/User/settings.json
# git
!/home/.config/git
# htop
!/home/.config/htop
!/home/.config/htop/htoprc
# nvim
# More info: https://neovim.io/doc/user/nvim_from_vim.html
!/home/.config/nvim
# ranger
!/home/.config/ranger
/home/.config/ranger/*
!/home/.config/ranger/commands.py
!/home/.config/ranger/rc.conf
!/home/.config/ranger/rifle.conf
# Sublime Text 3
!/home/.config/sublime-text-3
/home/.config/sublime-text-3/*
!/home/.config/sublime-text-3/Readme.md
!/home/.config/sublime-text-3/Packages
/home/.config/sublime-text-3/Packages/*
!/home/.config/sublime-text-3/Packages/User
/home/.config/sublime-text-3/Packages/User/*
!/home/.config/sublime-text-3/Packages/User/Markdown\ Extended.sublime-settings
!/home/.config/sublime-text-3/Packages/User/Preferences.sublime-settings
!/home/.config/sublime-text-3/Packages/User/Package\ Control.sublime-settings
# home/.gnupg
#
# Ignore the .gnupg directory, but track .keep so it's included in the index.
/home/.gnupg/*
!/home/.gnupg/.keep
# home/.hyperlocal
#
# Only track home/.hyperlocal Readme
/home/.hyperlocal/*
!/home/.hyperlocal/Readme.md
# home/.ipython
#
# Only track specific ipython config files
#
# Note: the exclude/include flip-flopping is required because using a wildcard
# exclusion of the form `/home/.ipython/**/*` ends up not ignoring files in
# the base directory, in this case the `README` file in `.ipython`.
/home/.ipython/*
!/home/.ipython/profile_default
/home/.ipython/profile_default/*
!/home/.ipython/profile_default/ipython_config.py
!/home/.ipython/profile_default/ipython_nbconvert_config.py
!/home/.ipython/profile_default/ipython_notebook_config.py
!/home/.ipython/profile_default/ipython_qtconsole_config.py
# home/.lein
#
# Only track the leiningen / clojure default profiles
/home/.lein/*
!/home/.lein/profiles.cjl
# home/.mutt
#
# Only track specific .mutt files.
/home/.mutt/*
!/home/.mutt/accounts
/home/.mutt/accounts/*
!/home/.mutt/providers
/home/.mutt/providers/*
!/home/.mutt/var
/home/.mutt/var/*
!/home/.mutt/accounts/exchange@example.com.sh
!/home/.mutt/accounts/gmail@example.com.sh
!/home/.mutt/providers/exchange.muttrc
!/home/.mutt/providers/gmail.muttrc
!/home/.mutt/var/.keep
!/home/.mutt/colors
!/home/.mutt/muttrc
# home/.newsbeuter
#
# Only track home/.newsbeuter/urls
/home/.newsbeuter/*
!/home/.newsbeuter/urls
# home/.overcast
#
# Only track example Overcast configuration files.
/home/.overcast/*
!/home/.overcast/example.clusters.json
!/home/.overcast/example.variables.json
# home/.pyenv
#
# Don't commit pyenv temp files.
/home/.pyenv/shims/
/home/.pyenv/versions/
/home/.pyenv/version
# home/.rbenv
#
# Don't commit rbenv temp files.
/home/.rbenv/shims/
/home/.rbenv/versions/
/home/.rbenv/version
# home/.rvm
#
# Only track specific rvm config files
/home/.rvm/*
!/home/.rvm/gemsets
/home/.rvm/gemsets/*
!/home/.rvm/gemsets/default.gems
!/home/.rvm/gemsets/global.gems
!/home/.rvm/user
/home/.rvm/user/*
!/home/.rvm/user/db
# home/.ssh
#
# Only track ssh config default and example configuration files.
/home/.ssh/*
!/home/.ssh/default.sshconfig
!/home/.ssh/config.d
/home/.ssh/config.d/*
!/home/.ssh/config.d/example.com.sshconfig
# home/.textadept
#
# Only trash .textadept/init.lua
/home/.textadept/*
!/home/.textadept/init.lua
# home/.vim
#
# Ignore temp vim files.
# Copied from home/.vim.janus/.gitignore.
/home/.vim/_backup
/home/.vim/_temp
/home/.vim/.netrwhist
# Vimius file
/home/.vim/.vimius