Skip to content

Instantly share code, notes, and snippets.

@misberner
Created January 8, 2014 13:58
Show Gist options
  • Save misberner/8317121 to your computer and use it in GitHub Desktop.
Save misberner/8317121 to your computer and use it in GitHub Desktop.
Reasonable file exclude settings for Sublime Text
{
"file_exclude_patterns":
[
// Executable binaries
"*.so",
"*.a",
"*.exe",
"*.dll",
"*.lib",
"*.dylib",
// Documents
"*.ps",
"*.pdf",
"*.odt",
"*.odp",
"*.doc",
"*.docx",
"*.ppt",
"*.pptx",
"*.xls",
"*.xlsx",
// Image files
"*.bmp",
"*.png",
"*.jpg",
"*.jpeg",
"*.tga",
"*.tiff",
"*.eps",
// Compression/Archive files
"*.zip",
"*.rar",
"*.tar",
"*.gz",
"*.bz2",
"*.Z",
// Python
"*.pyc",
"*.pyo",
// C/C++
"*.o",
// Java
"*.class",
"*.jar",
// Latex + Beamer
"*.aux",
"*.log",
"*.fdb_latexmk",
"*.nav",
"*.out",
"*.pdf",
"*.snm",
"*.synctex.gz",
"*.synctex.gz(busy)",
"*.toc",
"*.vrb",
"*.bbl",
"*.blg",
"C:\\nppdf32Log\\debuglog.txt",
// Sublime Text
"*.sublime-project",
"*.sublime-workspace"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment