.gitignore (812B)
1 # general 2 tags 3 4 # macos 5 .DS_Store 6 .fseventsd 7 .Spotlight-V100 8 .TemporaryItems 9 .Trashes 10 ._* 11 12 # c/c++ output 13 *.d 14 *.o 15 *.slo 16 *.lo 17 *.obj 18 *.out 19 *.exe 20 *.app 21 *.dSYM/ 22 *.su 23 *.idb 24 *.pdb 25 *.i 26 *.ii 27 *.gpu 28 *.ptx 29 *.cubin 30 *.fatbin 31 32 # vim 33 [._]*.s[a-v][a-z] 34 [._]*.sw[a-p] 35 [._]s[a-rt-v][a-z] 36 [._]ss[a-gi-z] 37 [._]sw[a-p] 38 Session.vim 39 Sessionx.vim 40 *~ 41 .netrwhist 42 43 # python 44 __pycache__/ 45 *.so 46 *.py[cod] 47 *.egg 48 .env 49 .venv 50 env/ 51 venv/ 52 ENV/ 53 env.bak/ 54 venv.bak/ 55 .coverage 56 .coverage.* 57 .cache 58 htmlcov/ 59 .tox/ 60 .nox/ 61 nosetests.xml 62 coverage.xml 63 64 # tex 65 *.aux 66 *.lof 67 *.log 68 *.lot 69 *.fls 70 *.out 71 *.toc 72 *.fmt 73 *.fot 74 *.cb 75 *.cb2 76 .*.lb 77 *-converted-to.* 78 *.bbl 79 *.bcf 80 *.blg 81 *-blx.aux 82 *-blx.bib 83 *.run.xml 84 *.fdb_latexmk 85 *.synctex 86 *.synctex(busy) 87 *.synctex.gz 88 *.synctex.gz(busy) 89 *.pdfsync 90 latex.out/ 91 *.nav 92 *.pre 93 *.snm 94 *.vrb 95 *.soc 96 *.cug 97 *.ent 98 *.brf 99 *.idx 100 *.ilg 101 *.ing 102 *.dpth