.gitignore (1300B)
1 2 # Created by https://www.gitignore.io/api/c,c++,vim,linux 3 4 ### C ### 5 # Prerequisites 6 *.d 7 8 # Object files 9 *.o 10 *.ko 11 *.obj 12 *.elf 13 14 # Linker output 15 *.ilk 16 *.map 17 *.exp 18 19 # Precompiled Headers 20 *.gch 21 *.pch 22 23 # Libraries 24 *.lib 25 *.a 26 *.la 27 *.lo 28 29 # Shared objects (inc. Windows DLLs) 30 *.dll 31 *.so 32 *.so.* 33 *.dylib 34 35 # Executables 36 *.exe 37 *.out 38 *.app 39 *.i*86 40 *.x86_64 41 *.hex 42 43 # Debug files 44 *.dSYM/ 45 *.su 46 *.idb 47 *.pdb 48 49 # Kernel Module Compile Results 50 *.mod* 51 *.cmd 52 modules.order 53 Module.symvers 54 Mkfile.old 55 dkms.conf 56 57 58 ### C++ ### 59 # Prerequisites 60 61 # Compiled Object files 62 *.slo 63 64 # Precompiled Headers 65 66 # Compiled Dynamic libraries 67 68 # Fortran module files 69 *.mod 70 *.smod 71 72 # Compiled Static libraries 73 *.lai 74 75 # Executables 76 77 78 ### Vim ### 79 # swap 80 [._]*.s[a-v][a-z] 81 [._]*.sw[a-p] 82 [._]s[a-v][a-z] 83 [._]sw[a-p] 84 # session 85 Session.vim 86 # temporary 87 .netrwhist 88 *~ 89 # auto-generated tag files 90 tags 91 92 93 ### Linux ### 94 95 # temporary files which can be created if a process still has a handle open of a deleted file 96 .fuse_hidden* 97 98 # KDE directory preferences 99 .directory 100 101 # Linux trash folder which might appear on any partition or disk 102 .Trash-* 103 104 # .nfs files are created when an open file is removed but is still being accessed 105 .nfs* 106 107 # End of https://www.gitignore.io/api/c,c++,vim,linux 108 109 ### Custom ### 110 111 .lvimrc 112 .tmuxp.yaml 113 .gdb_history 114 .ycm_extra_conf.py