Mercurial > dotfiles
annotate dot_gitignore @ 1089:3413249bd5fa draft
feat: update helix
- master build including tree-house (new tree-sitter library)
author | Zeger Van de Vannet <zeger@vandevan.net> |
---|---|
date | Mon, 14 Apr 2025 21:47:14 +0200 |
parents | bd41aac927e6 |
children |
rev | line source |
---|---|
257 | 1 ## OSX |
2 | |
3 .DS_Store | |
4 .AppleDouble | |
5 .LSOverride | |
6 Icon | |
7 | |
8 | |
9 # Thumbnails | |
10 ._* | |
11 | |
12 # Files that might appear on external disk | |
13 .Spotlight-V100 | |
14 .Trashes | |
15 | |
16 | |
17 ## LINUX | |
18 | |
19 | |
20 ## VIM | |
21 | |
22 *.s[a-w][a-z] | |
23 !*.sch | |
829
bd41aac927e6
chore: allow .scm (tree-sitter query) files
zegervdv <zegervdv@me.com>
parents:
257
diff
changeset
|
24 !*.scm |
257 | 25 *.un~ |
26 Session.vim | |
27 .netrwhist | |
28 tags | |
29 * ~ | |
30 | |
31 ### SASS Ignores - "Sassy CSS" http://sass-lang.com/ | |
32 *.sass-cache | |
33 | |
34 ## RUBY | |
35 | |
36 *.gem | |
37 *.rbc | |
38 .bundle | |
39 .config | |
40 coverage | |
41 InstalledFiles | |
42 lib/bundler/man | |
43 pkg | |
44 rdoc | |
45 spec/reports | |
46 test/tmp | |
47 test/version_tmp | |
48 tmp | |
49 | |
50 # YARD artifacts | |
51 .yardoc | |
52 _yardoc | |
53 doc/ | |
54 | |
55 ## C | |
56 | |
57 # Object files | |
58 *.o | |
59 *.ko | |
60 | |
61 # Libraries | |
62 *.lib | |
63 *.a | |
64 | |
65 # Shared objects (inc. Windows DLLs) | |
66 *.dll | |
67 *.so | |
68 *.so.* | |
69 *.dylib | |
70 | |
71 # Executables | |
72 *.exe | |
73 *.out | |
74 *.app | |
75 | |
76 | |
77 # Latex Files | |
78 *.aux | |
79 *.log | |
80 *.pdf | |
81 | |
82 .rake_tasks | |
83 | |
84 .sync | |
85 | |
86 *.icloud |