-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
202 lines (165 loc) · 2.84 KB
/
Copy path.gitignore
File metadata and controls
202 lines (165 loc) · 2.84 KB
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
# Could just force-add these files and leave this as '*', but this way I have a
# nice explicit list for documentation's sake.
# Uncomment to ignore everything by default.
# *
# Bash stuff (profile just sources bashrc, since it's the only thing sourced
# when a shell is a login shell).
!.bash*
.*.swp
.bash_history
.bash_local
.bash_logout
!.profile
# Zsh
!.zshrc
!.zsh
!.zsh/*
!.zsh/contrib
!.zsh/contrib/*
# Do ignore the data directory (my construct, it's where completion cache,
# history etc live)
.zsh/data
.zsh/data/*
# Do ignore local/sensitive settings
.zsh/local
.zsh/pre-local
# Swapfiles (sigh)
.zsh/*.swp
# Git aliases, identification info
!.gitconfig
# The gitignore of this repository itself (!)
!.gitignore
# My global Git excludes file (acts as a global .gitignore)
!.gitexcludes
# Mercurial config (yup, stored in a Git repository. Take that, hg!)
!.hgrc
# IPython config (need directory here so gitignore works correctly.
# This won't actually pull in the other contetns of the dir, though.
# Which is good as all I care about is the...
!.ipython
# ipythonrc file!
!.ipython/ipythonrc
__pycache__
# Virtualenvwrapper hooks
!.virtualenvs
venv/
!.virtualenvs/postmkvirtualenv
# IRb config
!.irbrc
# RVM config
!.rvmrc
# Vim plugins, ftplugins, syntax etc etc
!.vim
!.vim/*
!.vim/*/*
!.vim/*/*/*
!.vim/*/*/*/*
!.vim/*/*/*/*/*
!.vim/*/*/*/*/*/*
# Do ignore netrw history
.vim/.netrwhist
# Do ignore vim-plug stuff, sigh
.vim/plugged
# Vim settings
!.vimrc
# Ignore swapfiles
.vim/.*.swp
.vim/*/.*.swp
.vim/*/*/.*.swp
.vim/*/*/*/.*.swp
*.ses
# Local copies of tools/scripts
!bin
!bin/*
bin/.*.swp
# Concourse CLI; changes depending on target version
bin/fly
bin/
# Config for local daemons (e.g. squid)
!etc
!etc/*
etc/clusto*.conf
# Screen, tmux
!.screenrc
!.tmux.conf
!.tmux
!.tmux/*.yml
# Gem config
!.gemrc
# Mutt
!.muttrc
!.mutt
!.mutt/*
# RTorrent
!.rtorrent.rc
# Ack
!.ackrc
# Teamocil
!.teamocil
!.teamocil/*
# Synergy
!.synergy.conf
# Leiningen (Clojure)
!.lein
!.lein/profiles.clj
# Hammerspoon (Lua-based OS X automation tool)
!.hammerspoon
!.hammerspoon/*
.hammerspoon/.*.swp
# executable files
*.out
*.exe
# image files
*.ppm
# MacOS System files
.DS_Store
# CMake Files
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
SharedPrecompiledHeaders
*.build
*.xcodeproj
*.tcl
# C++
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
.cache/
# Chess Engine files
chess_engine/output/performance_log.txt
chess_engine/feature_set.txt
# Rust
disc_golf_flight_simulation/target/*
disc_golf_flight_simulation/flight_plot.bmp