Skip to content

Instantly share code, notes, and snippets.

@whophil
Last active March 24, 2016 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whophil/9ae9aa343f0f2be9f6fb to your computer and use it in GitHub Desktop.
Save whophil/9ae9aa343f0f2be9f6fb to your computer and use it in GitHub Desktop.
Sublime Text: Barebones LaTeX .sublime-project file (with file_exclude_patterns for LaTeX projects)
{
"folders":
[
{
"path": "path/to/your/project",
"file_exclude_patterns" :
[
"*.aux",
"*.bbl",
"*.blg",
"*.fdb_latexmk",
"*.fls",
"*.out",
"*.synctex.gz",
"*.DS_Store",
"*.pdf",
"~*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment