-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtm_properties
67 lines (52 loc) · 1.83 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
# Settings
#
windowTitle = "$TM_DISPLAYNAME - ${TM_DIRECTORY/${HOME}\/Development\//\/\//} (git: $TM_SCM_BRANCH)"
# Extra files to include
#
myIncludes = ".tm_properties,.htaccess,.gitignore,.gitattributes,.standalone_migrations,.env,.travis.yml,.editorconfig,.swiftlint.yml,.rubocop*"
fileBrowserGlob = "{*,$myIncludes}"
include = "{$include,$myIncludes}"
# Hide log and tmp directories from search popups.
#
myExcludes = "log,tmp,public/media,node_modules,bower_components,_builds,_projects,_steps,vendor,*.sql,*.pg,dump"
excludeInFileChooser = "{$excludeInFileChooser,$myExcludes}"
excludeInFolderSearch = "{$excludeInFolderSearch,$myExcludes}"
# Default editing configuration
#
fontName = SFMono-Medium
fontSize = 13
theme = CAB58494-D1A3-4BAD-BBC6-DAED679AD20B
showIndentGuides = true
softWrap = false
showInvisibles = true
tabSize = 2
softTabs = true
# File type specific configuration
#
[ *.{icns,ico,jpg,jpeg,m4v,nib,pdf,png,psd,pyc,rtf,tif,tiff,xib,gem,mp4,mov} ]
binary = true
[ source.python ]
softTabs = false
tabSize = 4
[ source.json ]
tabSize = 2
[ attr.untitled ]
fileType = source.php
[ text.plain ]
softWrap = true
[ "{README,INSTALL,LICENSE,TODO}" ]
fileType = "text.plain"
[ text.html.markdown ]
softWrap = true
# "Go to Related File" action for Rspec test files
[ *.rb ]
relatedFilePath = "${TM_FILEPATH/\/app\/(.+)/\/spec\/${1/(?=\.rb$)/_spec/}/}"
[ *_spec.rb ]
fileType = source.ruby.rspec
relatedFilePath = "${TM_FILEPATH/\/spec\/(.+)/\/app\/${1/_spec(?=\.rb$)//}/}"
[ *.html.erb ]
relatedFilePath = "${TM_FILEPATH/\/app\/(.+)/\/spec\/${1}_spec.rb/}"
[ *.erb_spec.rb]
relatedFilePath = "${TM_FILEPATH/\/spec\/(.+)_spec.rb/\/app\/${1}/}"
[ spec/**/shared/*.rb ]
fileType = source.ruby.rspec