-
Notifications
You must be signed in to change notification settings - Fork 0
/
tm_properties
85 lines (57 loc) · 1.85 KB
/
tm_properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Basic Settings {{{
fontName = "Inconsolata"
fontSize = 16
# }}}
# 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,.sass-cache,.DS_Store"
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}"
# }}}
# Misc configuration {{{
# show the path to the current tab's file in the window title
# (replace the 2 instances of 'username' in the string below with your mac username).
windowTitle = "$TM_DISPLAYNAME${TM_DIRECTORY/\A(?:\/Users\/ernesto\w+\/?(.*)|(.+))\z/${2:? – ${2/\A\/Users\/ernesto/~/}:${1/\A(?=.)/ – /}}/}"
# Configure git
#
TM_GIT = "/usr/local/bin/git"
# }}}
# Default editing configuration {{{
softWrap = false
softTabs = true
tabSize = 4
wrapColumn = 100
# }}}
# File type specific configuration {{{
[ text ]
showInvisibles = true
[ .git/COMMIT_EDITMSG ]
spellChecking = true
spellingLanguage = 'en'
[ *.{txt,md,mdown,markdown} ]
spellChecking = true
tabSize = 4
[ *.{icns,ico,jpg,jpeg,m4v,nib,pdf,png,psd,pyc,rtf,tif,tiff,xib} ]
binary = true
[ source ]
softTabs = true
tabSize = 2
[ source.python ]
softTabs = true
tabSize = 4
[ "{README,INSTALL,LICENSE,TODO,.gitignore}" ]
fileType = "text.plain"
[ "{Guardfile,Capfile}" ]
fileType = "source.ruby"
[ *.txt ]
softWrap = true
[ *.{html,phtml,php} ]
softWrap = false
# }}}