Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.78 KB | None | 0 0
  1. {
  2. "workbench.colorTheme": "Andromeda",
  3. "terminal.integrated.env.windows": {
  4. "CHERE_INVOKING": "1",
  5. },
  6. "editor.rulers": [
  7. 80,
  8. 120
  9. ],
  10. "files.eol": "\n",
  11. "files.autoSave": "onWindowChange",
  12. "editor.renderWhitespace": "all",
  13. "shellLauncher.shells.windows": [
  14. {
  15. "shell": "C:\\cygwin64\\bin\\bash.exe",
  16. "args": [
  17. "-li"
  18. ],
  19. "label": "Cygwin",
  20. },
  21. {
  22. "shell": "C:\\Windows\\System32\\cmd.exe",
  23. "label": "cmd"
  24. },
  25. {
  26. "shell": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  27. "label": "PowerShell"
  28. }
  29. ],
  30. "explorer.confirmDragAndDrop": false,
  31. "[latex]": {
  32. "editor.detectIndentation": false,
  33. "editor.tabSize": 2,
  34. "editor.insertSpaces": true
  35. },
  36. "latex-workshop.message.error.show": false,
  37. "latex-workshop.message.log.show": false,
  38. "latex-workshop.message.information.show": false,
  39. "latex-workshop.message.update.show": false,
  40. "latex-workshop.message.warning.show": false,
  41. "latex-workshop.latex.autoBuild.cleanAndRetry.enabled": false,
  42. "latex-workshop.view.pdf.viewer": "tab",
  43. "latex-workshop.latex.autoBuild.run": "never",
  44. "latex-workshop.latex.tools": [
  45. {
  46. "name": "XeLaTeX command",
  47. "command": "xelatex",
  48. "args": [
  49. "-shell-escape",
  50. "-file-line-error",
  51. "-halt-on-error",
  52. "-interaction=nonstopmode",
  53. "-synctex=1",
  54. "%DOCFILE%"
  55. ]
  56. },
  57. {
  58. "name": "pdfLaTeX command",
  59. "command": "pdflatex",
  60. "args": [
  61. "-shell-escape",
  62. "-file-line-error",
  63. "-halt-on-error",
  64. "-interaction=nonstopmode",
  65. "-synctex=1",
  66. "%DOCFILE%"
  67. ]
  68. },
  69. {
  70. "name": "LuaLaTeX command",
  71. "command": "lualatex",
  72. "args": [
  73. "-shell-escape",
  74. "-file-line-error",
  75. "-halt-on-error",
  76. "-interaction=nonstopmode",
  77. "-synctex=1",
  78. "%DOCFILE%"
  79. ]
  80. },
  81. {
  82. "name": "Biber command",
  83. "command": "biber",
  84. "args": [
  85. "%DOCFILE%"
  86. ]
  87. },
  88. {
  89. "name": "pLaTeX command",
  90. "command": "platex",
  91. "args": [
  92. "-shell-escape",
  93. "-file-line-error",
  94. "-halt-on-error",
  95. "-interaction=nonstopmode",
  96. "-synctex=1",
  97. "-kanji=utf8",
  98. "%DOCFILE%"
  99. ]
  100. },
  101. {
  102. "name": "upLaTeX command",
  103. "command": "uplatex",
  104. "args": [
  105. "-shell-escape",
  106. "-file-line-error",
  107. "-halt-on-error",
  108. "-interaction=nonstopmode",
  109. "-synctex=1",
  110. "-kanji=utf8",
  111. "%DOCFILE%"
  112. ]
  113. },
  114. {
  115. "name": "plain dvipdfmx command",
  116. "command": "dvipdfmx",
  117. "args": [
  118. "%DOCFILE%"
  119. ]
  120. },
  121. {
  122. "name": "pbibtex command",
  123. "command": "pbibtex",
  124. "args": [
  125. "%DOCFILE%"
  126. ]
  127. },
  128. {
  129. "name": "mendex with style",
  130. "command": "mendex",
  131. "args": [
  132. "-g",
  133. "-s",
  134. "%DOCFILE%.ist",
  135. "-o",
  136. "%DOCFILE%.ind",
  137. "%DOCFILE%.idx"
  138. ]
  139. }
  140. ],
  141. "latex-workshop.latex.recipes": [
  142. {
  143. "name": "Build with XeLaTeX",
  144. "tools": [
  145. "XeLaTeX command"
  146. ]
  147. },
  148. {
  149. "name": "Build with pLaTeX",
  150. "tools": [
  151. "pLaTeX command",
  152. "plain dvipdfmx command"
  153. ]
  154. },
  155. {
  156. "name": "Build with pLaTeX + pBibTeX",
  157. "tools": [
  158. "pLaTeX command",
  159. "pbibtex command",
  160. "pLaTeX command",
  161. "pLaTeX command",
  162. "plain dvipdfmx command"
  163. ]
  164. },
  165. {
  166. "name": "XeLaTeX + mendex",
  167. "tools": [
  168. "XeLaTeX command",
  169. "mendex with style",
  170. "XeLaTeX command"
  171. ]
  172. },
  173. {
  174. "name": "XeLaTeX + Biber",
  175. "tools": [
  176. "XeLaTeX command",
  177. "Biber command",
  178. "mendex with style",
  179. "XeLaTeX command",
  180. "XeLaTeX command"
  181. ]
  182. },
  183. {
  184. "name": "XeLaTeX + pBibTeX",
  185. "tools": [
  186. "XeLaTeX command",
  187. "pbibtex command",
  188. "XeLaTeX command",
  189. "XeLaTeX command"
  190. ]
  191. },
  192. {
  193. "name": "Build with pdfLaTeX",
  194. "tools": [
  195. "pdfLaTeX command"
  196. ]
  197. },
  198. {
  199. "name": "Build with LuaLaTeX",
  200. "tools": [
  201. "LuaLaTeX command"
  202. ]
  203. },
  204. {
  205. "name": "Build with upLaTeX",
  206. "tools": [
  207. "upLaTeX command",
  208. "plain dvipdfmx command"
  209. ]
  210. }
  211. ],
  212. "[python]": {
  213. "editor.detectIndentation": false,
  214. "editor.tabSize": 2,
  215. "editor.insertSpaces": true
  216. },
  217. "python.formatting.autopep8Args": [
  218. "--indent-size=2",
  219. "--ignore=E402"
  220. ],
  221. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement