-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitignore
87 lines (73 loc) · 1.23 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
# 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
!.backup-exclude
# File types that need to be ignored anywhere:
.DS_Store
.*.sw?
# TODO: incomplete, needs more?
!.local/
.local/*
!.local/bin
# NOTE see .local/bin/.gitignore
!.local/share
.local/share/*
!.local/share/home-install
# Common shell environment and configuration
!.profile
!.profile.d/
.profile.d/tokens
.profile.d/.cached*
!.aliases
!.dircolors/
!.inputrc
# Bash configuration
!.bash_profile
!.bashrc
# Zsh configuration
!.zsh/
.zsh/rc.d/.cached*
!.zshenv
!.zprofile
!.zshrc
!.zlogin
!.zlogout
# Git user config
!.gitconfig
# SSH Config
!/.ssh
/.ssh/*
!/.ssh/config
!/.config
/.config/*
!/.config/flake8
!/.config/foot
!/.config/kanshi
!/.config/kitty
!/.config/nvim
!/.config/paru
!/.config/river
!/.config/sway
!/.config/systemd
!/.config/tmux
!/.config/waybar
!/.config/wofi
# Vim Config
!.vimrc
!/.vim
/.vim/*
!/.vim/snippets
!.screenrc
!.terminfo.src/
!.ipython/
# Jupyter Config
!/.jupyter/
# ...contains hashed password
/.jupyter/jupyter_server_config.json
# ...churns with usage
/.jupyter/lab/workspaces
!README.md
!TODO.md