/ .gitignore
.gitignore
 1  # Spelling, sops, personal tmux profiles, fzf binaries
 2  .fzf/
 3  .tmuxp/
 4  *.dec
 5  *.spl
 6  
 7  # BFG
 8  ..bfg-report/
 9  
10  # LazyVim
11  *.log
12  ./nvim/*.log
13  ./nvim/.repro
14  ./nvim/.tests
15  ./nvim/data
16  ./nvim/debug
17  ./nvim/doc/tags
18  ./nvim/foo.*
19  ./nvim/tt.*
20  .repro
21  .tests
22  data
23  !.agents/data/
24  debug
25  doc/tags
26  foo.*
27  tt.*
28  
29  # Node
30  node_modules/
31  !/package.json
32  !/package-lock.json
33  
34  # Compiled Lua, Luarocks
35  *.src.rock
36  /.luarocks
37  /lua
38  /lua.bat
39  /lua_modules
40  /luarocks
41  /luarocks.bat
42  luac.out
43  
44  # Object files
45  *.o
46  *.os
47  *.ko
48  *.obj
49  *.elf
50  
51  # Precompiled Headers
52  *.gch
53  *.pch
54  
55  # Libraries
56  *.lib
57  *.a
58  *.la
59  *.lo
60  *.def
61  *.exp
62  
63  # Shared objects
64  *.dll
65  *.so
66  *.so.*
67  *.dylib
68  .DS_Store
69  
70  # Executables and binaries in general
71  *.exe
72  *.out
73  *.app
74  *.i*86
75  *.x86_64
76  *.hex
77  *.zip
78  *.tar.gz
79  
80  # OpenCode
81  opencode.db
82  opencode.db-*
83  
84  # Yazi plugins
85  yazi/plugins/*
86  yazi/plugins/*/*
87  
88  # Devbox
89  .devbox/