Skip to content

Instantly share code, notes, and snippets.

@m-sostero
Last active December 14, 2017 13:10
Show Gist options
  • Save m-sostero/1d5624bcb1ccb365a21c397efc97676d to your computer and use it in GitHub Desktop.
Save m-sostero/1d5624bcb1ccb365a21c397efc97676d to your computer and use it in GitHub Desktop.
Git ignore and LaTeX artifacts
# =========================
# Sublime project files
# =========================
# project files can be checked in shared repositories, provided they contain relative paths
# *.sublime-project
*.sublime-workspace
# =========================
# Operating System Files
# =========================
# =========================
# Linux
# =========================
# Shadow files
*~
# Temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
# =========================
# Windows
# =========================
# Image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
# =========================
# macOS
# =========================
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# No idea, but I don't need it:
.$*$
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# =========================
# Compiler artifacts
# =========================
## LaTeX artifacts ##
*.acn
*.acr
*.alg
*.aux
*.bbl
*.blg
*.dvi
*.ent
*.fdb_latexmk
*.glg
*.glo
*.gls
*.idx
*.ilg
*.ind
*.ist
*.lof
*.log
*.lot
*.maf
*.mtc
*.mtc0
*.nav
*.nlo
*.out
*.pdfsync
*.ps
*.snm
*.synctex*
*.tdo
*.toc
*.vrb
*.xdy
## Visual Studio artifacts ##
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
*.dll
*.lib
*.sbr
"temp_files_exts": [
".acn",
".acr",
".alg",
".aux",
".bbl",
".bcf",
".blg",
".brf",
".dvi",
".ent",
".fdb_latexmk",
".fls",
".glg",
".glo",
".gls",
".idx",
".ilg",
".ind",
".ist",
".lof",
".log",
".lol",
".lot",
".maf",
".mtc",
".mtc0",
".nav",
".nlo",
".out",
".pdfsync",
".ps",
".run.xml",
".snm",
".synctex(busy)",
".synctex.gz",
".tdo",
".toc",
".vrb",
".xdy"
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment