-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
98 lines (82 loc) · 1.43 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
# 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.
*
!.tmp
!.tmp/*
# Generic .config directory
!.config
!.config/*
# README with extra information
!README.rst
!INSTALL.rst
# Bash stuff (profile just sources bashrc, since it's the only thing sourced
# when a shell is a login shell).
!.bashrc
!.alias
!.profile
# SSH agent starter
!.ssh-agent
# Git aliases, identification info
!.gitconfig
!.gitattributes
# The gitignore of this repository itself (!)
!.gitignore
!.gitmodules
# the mailmap file to fix up committer details
!.mailmap
# Mercurial config
!.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
# GNU readline config
!.inputrc
# psql config
!.psqlrc
# Vim plugins, ftplugins, syntax etc etc
!.vim
# Vim settings
!.vimrc
# Bin files (few and far between)
!bin
!bin/*
bin/*.pyc
# Man files
!share
!share/*
# MOC
!.moc
!.moc/*
# Python's virtual envs
!env
!env/postactivate
# Screen RCfile
!.screenrc
# tmux file
!.tmux
!.tmux/*
!.tmux.conf
!.tmux.*.conf
# Fonts
!.fonts
!.fonts/*
# ZSH
!.zprezto
!.zshrc
!.zlogin
!.zlogout
!.zpreztorc
!.zprofile
!.zshenv
!.zsh
!.zsh/*
# More RC files
!.wgetrc
!.macos
!Brewfile.macos
!Brewfile.linux
!.dockerfunc