-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
76 lines (54 loc) · 1.15 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
# Ignore plugin directories for Neovim
# nvim/.config/nvim/lazy-lock.json
**/lazy-lock.json
nvim/.netrwhist
# Ignore compiled Lua files
*.luac
# Ignore Neovim's undo and swap files
nvim/undo/
nvim/swap/
# Ignore package manager directories
nvim/pack/
# Ignore log files
*.log
# Ignore cache directories
.cache/
*cache/
# Ignore temporary files
*.tmp
*.temp
*~
# Ignore Bash history
.bash_history
# Ignore local configuration files that might contain sensitive information
.localrc
.env
# Ignore compiled Python files
*.pyc
__pycache__/
# Ignore Node.js modules
node_modules/
# Ignore macOS specific files
.DS_Store
# Ignore Visual Studio Code settings
.vscode/
# Ignore Vim's view files
*.vim/view/
# Ignore any backup files
*.bak
# Ignore Neovim's shada file (shared data)
nvim/shada/
# Ignore Neovim's view files (for saving folds, etc.)
nvim/view/
# Ignore any file with .local extension (for local configurations)
*.local
# Ignore Arch Linux package manager cache
.pkg-cache/
# Ignore Yarn's error log
yarn-error.log
# Ignore npm's debug log
npm-debug.log
# Ignore Neovim's generated help tags
nvim/doc/tags
# Ignore any file ending with _ignore
*_ignore