blob: 9c9bef7626304f10c45f35be2ec7a3ab1e82118a (
plain)
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
|
# Ignore .git directory
.git/
# Ignore git config
.gitconfig
# Ignore Packer's compiled files
packer_compiled.lua
# Ignore Zsh plugins directory
~/.config/zsh/plugins
# Ignore zcompdump files
zcompdump
# Ignore .DS_Store files (macOS)
*.DS_Store
# Ignore .spl files
*.spl
# Ignore node_modules directory
node_modules/
# Ignore .zip files
*.zip
# Ignore .pxd files
*.pxd
# Ignore .cache directory
^.cache/
# Ignore normal directories
^downloads/
^music/
^images/
^pictures/
^videos/
^virt/
# Ignore dotfiles dir
~/.cfg
.cfg
|