Homebrew tap for XR (VR/AR/MR) software.
homebrew vr linux oci
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update gitignore

+62 -3
+62 -3
.gitignore
··· 1 + ### Linux template 2 + *~ 3 + 4 + # temporary files which can be created if a process still has a handle open of a deleted file 5 + .fuse_hidden* 6 + 7 + # KDE directory preferences 8 + .directory 9 + 10 + # Linux trash folder which might appear on any partition or disk 11 + .Trash-* 12 + 13 + # .nfs files are created when an open file is removed but is still being accessed 14 + .nfs* 15 + 16 + ### IDE files template 17 + # JetBrains 1 18 .idea/ 2 - ### Zig template 3 - .zig-cache/ 4 - zig-out/ 19 + !.idea/modules.xml 20 + !.idea/runConfigurations/ 21 + !.idea/codeStyles/ 22 + !.idea/inspectionProfiles/ 23 + *.iml 24 + *.iws 25 + *.ipr 26 + out/ 27 + gen/ 28 + 29 + # Visual Studio Code 30 + .vscode/* 31 + !.vscode/settings.json 32 + !.vscode/tasks.json 33 + !.vscode/launch.json 34 + !.vscode/extensions.json 35 + !.vscode/*.code-snippets 36 + 37 + ### macOS template 38 + # General 39 + .DS_Store 40 + .AppleDouble 41 + .LSOverride 42 + 43 + # Icon must end with two \r 44 + Icon 45 + 46 + # Thumbnails 47 + ._* 48 + 49 + # Files that might appear in the root of a volume 50 + .DocumentRevisions-V100 51 + .fseventsd 52 + .Spotlight-V100 53 + .TemporaryItems 54 + .Trashes 55 + .VolumeIcon.icns 56 + .com.apple.timemachine.donotpresent 57 + 58 + # Directories potentially created on remote AFP share 59 + .AppleDB 60 + .AppleDesktop 61 + Network Trash Folder 62 + Temporary Items 63 + .apdisk 5 64