Skip to content

Instantly share code, notes, and snippets.

@procload
Created March 21, 2012 15:16
Show Gist options
  • Save procload/2148280 to your computer and use it in GitHub Desktop.
Save procload/2148280 to your computer and use it in GitHub Desktop.
TextMate2 Properties File
# Basic Settings
#
fontName = "Menlo"
fontSize = 13
# Extra files to include
#
myExtraIncludes = ".tm_properties,.htaccess,.gitignore"
fileBrowserGlob = "{*,$myExtraIncludes}"
include = "{$include,$myExtraIncludes}"
# Hide log, vendor and tmp directories from search popups.
#
myExtraExcludes = "log,vendor,tmp"
excludeInFileChooser = "{$excludeInFileChooser,$myExtraExcludes}"
excludeInFolderSearch = "{$excludeInFolderSearch,$myExtraExcludes}"
# If you also want to hide them from your project manager pane, add
# the following line to your project's local .tm_properties.
#
# excludeInBrowser = "{$excludeInBrowser,log,vendor,tmp}"
# Configure git
#
TM_GIT = "/usr/local/bin/git"
# Default editing configuration
#
softWrap = false
softTabs = true
tabSize = 2
wrapColumn = 80
# File type specific configuration
#
[ text ]
showInvisibles = true
# special per-filetype rules can be specified like so:
[ *.{txt,md,mdown,markdown} ]
spellChecking = true
softWrap = true
wrapColumn = "Use Window Frame"
softTabs = false
tabSize = 4
[ .git/COMMIT_EDITMSG ]
spellChecking = true
spellingLanguage = 'en'
[ *.{icns,ico,jpg,jpeg,m4v,nib,pdf,png,psd,pyc,rtf,tif,tiff,xib} ]
binary = true
[ "{README,INSTALL,LICENSE,TODO}" ]
fileType = "text.markdown"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment