-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
148 lines (124 loc) · 2.53 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
# 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.
*
# 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
!bin
!bin/*
bin/.*.swp
# Concourse CLI; changes depending on target version
bin/fly
# 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
# Linux workstation stuff
!.config
!.config/xfce4
!.config/xfce4/terminal
!.config/xfce4/terminal/terminalrc
# Neovim plugins, ftplugins, syntax etc etc
!.config/nvim
!.config/nvim/*
!.config/nvim/*/*
!.config/nvim/*/*/*
!.config/nvim/*/*/*/*
# Ignore swapfiles
.config/nvim/.*.swp
.config/nvim/*/.*.swp
.config/nvim/*/*/.*.swp
.config/nvim/*/*/*/.*.swp
# Random arbitrary not-really-a-config file,
# for use with hexdump
!.config/hexdump.format