forked from randy3k/LaTeXBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLaTeXSQ.sublime-settings
53 lines (39 loc) · 1.38 KB
/
LaTeXSQ.sublime-settings
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
{
"auto_complete_selector": "meta.definition.math.latex - comment",
"spell_check" : true,
"view_on_success": true,
// it is disabled if view_on_success is false
// this may not be working on some platforms
"bring_forward_on_success": false,
// it is disabled if view_on_success is false
"forward_sync_on_success": true,
"cmd": [
"latexmk", "-f", "-quiet", "-pdf", "-e",
"$pdflatex='pdflatex -synctex=1 --shell-escape %O %S'"
],
"cmd_force": [
"latexmk", "-g", "-f", "-quiet", "-pdf", "-e",
"$pdflatex='pdflatex -synctex=1 --shell-escape %O %S'"
],
"osx": {
// envirnoment path
// it is on by default since paths on mac are set by launchctl
"path": "/usr/texbin:/usr/local/bin:$PATH"
},
"windows": {
// envirnoment path
// "path": "C:\\Program Files\\MiKTeX 2.9\\miktex\\bin\\;$PATH"
// path to SumatraPDF
// "sumatrapdf" : "C:\\Program Files\\SumatraPDF\\SumatraPDF.exe"
},
"linux": {
// envirnoment path
// "path": "/usr/local/texlive/2013/bin/x86_64-linux:$PATH"
// path to sublime
// "sublime": "/usr/bin/subl",
// which viewer to use: evince or okular (default is evince)
// "viewer": "okular"
},
"extensions": ["tex"],
"word_separators" : "./()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?"
}