-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitignore
70 lines (57 loc) · 1.04 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
# Ignore everything by default...
/*
# ...then whitelist anything that we want to track. Starting of course with
# this file and other git meta data (e.g. for git-submodule):
!.gitignore
!.gitmodules
# XDG home, allow further whitelisting
!/.config
/.config/*
!/.config/flake8
# File types that need to be ignored anywhere:
.DS_Store
.*.sw?
# TODO: incomplete, needs more?
# ~/bins is a good place for random utility scripts; see bin/.gitignore.
!bin/
# Common shell environment and configuration
!.profile
!.profile.d/
.profile.d/tokens
!.aliases
!.dircolors/
!.inputrc
# Bash configuration
!.bash_profile
!.bashrc
# Zsh configuration
!.zsh/
!.zshenv
!.zprofile
!.zshrc
!.zlogin
!.zlogout
# Git user config
!.gitconfig
# SSH Config
!.ssh/config
# TMux config
!.tmux*.conf
# NeoVim Config
!/.config/nvim
.config/nvim/*
!/.config/nvim/init.vim
# Vim Config
!.vimrc
!/.vim
/.vim/*
!/.vim/snippets
!.xinitrc
!.xsession
!.Xresources
!.screenrc
!.terminfo.src/
# For starter_home itself, you'll probably want to drop these
!README.md
!TODO.md
!MOVING.md