-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.gitignore
175 lines (147 loc) · 3.17 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
# Could just force-add these files and leave this as '*', but this way I have a
# nice explicit list for documentation's sake.
# Ignore everything by default.
*
# But not my dumb little setup script.
!setup.sh
# 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
# 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
# ...default profile's...
!.ipython/profile_default
# ...main config file
!.ipython/profile_default/ipython_config.py
# Virtualenvwrapper hooks
!.virtualenvs
!.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
# Local copies of tools/scripts
# (but try not to do this, it's really gross)
# Old ruby based github helper. replace with gh sometime
!bin/hub
# Manual script for analyzing logfiles, still useful
!bin/logparse
# Manual script for 'merge up', used a lot sometimes
!bin/mu
# Config for local daemons (e.g. squid)
!etc
!etc/*
etc/clusto*.conf
# Screen, tmux
!.screenrc
!.tmux.conf
!.tmuxp
!.tmuxp/*.yml
# Gem config
!.gemrc
# Mutt
!.muttrc
!.mutt
!.mutt/*
# RTorrent
!.rtorrent.rc
# Ag
!.agrc
# Teamocil
!.teamocil
!.teamocil/*
# Synergy
!.synergy.conf
# Leiningen (Clojure)
!.lein
!.lein/profiles.clj
# Hammerspoon (Lua-based OS X automation tool)
!.hammerspoon
!.hammerspoon/*
.hammerspoon/.*.swp
# Linux workstation stuff
!.config
!.config/bat
!.config/bat/*
!.config/bat/themes
!.config/bat/themes/*
!.config/direnv
!.config/direnv/direnv.toml
!.config/xfce4
!.config/xfce4/terminal
!.config/xfce4/terminal/terminalrc
!.config/systemd/
!.config/systemd/user
!.config/systemd/user/*
!.config/systemd/user/*/*
# Keep ignoring this, it comes from the OS.
.config/systemd/user/gpg-agent.service
# And don't see swaps as usual (sigh)
.config/systemd/user/.*.swp
# Random arbitrary not-really-a-config file,
# for use with hexdump
!.config/hexdump.format
# Invoke customization (eg for nixos run.shell loc)
!.invoke.yml
# GPG settings (does NOT include keychain etc!)
!.gnupg
!.gnupg/*.conf
# Rust!
!.cargo
!.cargo/config.toml
# Lazygit
!.config/lazygit/
!.config/lazygit/config.yml
# 1Password CLI hooks
!.config/1Password
!.config/1Password/*
!.config/1Password/ssh/
!.config/1Password/ssh/*