-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
135 lines (114 loc) · 2.29 KB
/
.gitignore
File metadata and controls
135 lines (114 loc) · 2.29 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
# 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
# Arch Linux
!.xinitrc
!*.sh
# 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
# ipythonrc file!
!.ipython/ipythonrc
# Virtualenvwrapper hooks
!.virtualenvs/postmkvirtualenv
# IRb config
!.irbrc
# RVM config
!.rvmrc
# KeyMap
!.xmodmaprc
# Vim plugins, ftplugins, syntax etc etc
!.vim
!.vim/*
# But do ignore netrw history
.vim/.netrwhist
!.vim/autoload/*
!.vim/autoload/*/*
# Pathogen bundle stuff (WTB recursive gitignore excludes...)
# e.g. .vim/bundle/<plugin>/syntax/special_syntax.vim
# (Added a few more asterisks just to cover any deeper setups. Sigh.)
!.vim/bundle
!.vim/bundle/*
!.vim/bundle/*/*
!.vim/bundle/*/*/*
!.vim/bundle/*/*/*/*
!.vim/bundle/*/*/*/*/*
!.vim/bundle/Vundle.vim/*
!.vim/colors/*
!.vim/doc/*
!.vim/ftdetect/*
!.vim/ftplugin/*
!.vim/ftplugin/*/*
!.vim/indent/*
!.vim/plugin/*
!.vim/spell/*
!.vim/syntax/*
# Vim settings
!.vimrc
# Local copies of tools/scripts
!bin
!bin/*
bin/.*.swp
# This is an actual binary that comes from a third party app
!bin/asciinema
# Same
!bin/rack
# 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