Easily turn Nushell modules into cross-shell CLI tools
library nu nushell
1
fork

Configure Feed

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

Add gitignore

MatrixFurry ebb0c132

+68
+68
.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 + ### Zig template 17 + .zig-cache/ 18 + zig-out/ 19 + 20 + ### IDE files template 21 + # JetBrains 22 + .idea/ 23 + !.idea/modules.xml 24 + !.idea/runConfigurations/ 25 + !.idea/codeStyles/ 26 + !.idea/inspectionProfiles/ 27 + *.iml 28 + *.iws 29 + *.ipr 30 + out/ 31 + gen/ 32 + 33 + # Visual Studio Code 34 + .vscode/* 35 + !.vscode/settings.json 36 + !.vscode/tasks.json 37 + !.vscode/launch.json 38 + !.vscode/extensions.json 39 + !.vscode/*.code-snippets 40 + 41 + ### macOS template 42 + # General 43 + .DS_Store 44 + .AppleDouble 45 + .LSOverride 46 + 47 + # Icon must end with two \r 48 + Icon 49 + 50 + # Thumbnails 51 + ._* 52 + 53 + # Files that might appear in the root of a volume 54 + .DocumentRevisions-V100 55 + .fseventsd 56 + .Spotlight-V100 57 + .TemporaryItems 58 + .Trashes 59 + .VolumeIcon.icns 60 + .com.apple.timemachine.donotpresent 61 + 62 + # Directories potentially created on remote AFP share 63 + .AppleDB 64 + .AppleDesktop 65 + Network Trash Folder 66 + Temporary Items 67 + .apdisk 68 +