Last active
June 24, 2021 20:28
-
-
Save johnnychen94/f1d26292384619e4579e79effd4543ca to your computer and use it in GitHub Desktop.
VSCODE configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"editor.cursorStyle": "block", | |
"editor.detectIndentation": false, | |
"editor.formatOnPaste": true, | |
"editor.formatOnType": true, | |
"editor.fontSize": 13, | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.wordWrapColumn": 90, | |
"markdownlint.run": "onSave", | |
"markdownlint.config": { | |
"MD002": false, | |
"MD013": false, | |
"MD029": false, | |
"MD024": false, | |
"MD033": false, | |
"MD041": false, | |
}, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"files.autoSave": "afterDelay", | |
"workbench.colorTheme": "Visual Studio Light", | |
"workbench.fontAliasing": "antialiased", | |
"workbench.statusBar.feedback.visible": false, | |
"workbench.tree.indent": 12, | |
"workbench.enableExperiments": false, | |
"workbench.useExperimentalGridLayout": true, | |
"workbench.editor.closeOnFileDelete": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.editor.labelFormat": "short", | |
"workbench.editor.tabSizing": "shrink", | |
"zenMode.hideLineNumbers": false, | |
"zenMode.restore": true, | |
"window.nativeTabs": true, | |
"window.openFoldersInNewWindow": "on", | |
"window.restoreFullscreen": true, | |
"window.titleBarStyle": "native", | |
"window.zoomLevel": 0, | |
"search.showLineNumbers": true, | |
"search.smartCase": true, | |
"debug.inlineValues": true, | |
"debug.allowBreakpointsEverywhere": true, | |
"git.autofetch": true, | |
"git.defaultCloneDirectory": "~/Documents/", | |
"gitProjectManager.displayProjectPath": true, | |
"gitProjectManager.openInNewWindow": true, | |
"gitProjectManager.baseProjectsFolders": [ | |
"~/Documents/" | |
], | |
"latex-workshop.intellisense.package.enabled": true, | |
"latex-workshop.intellisense.unimathsymbols.enabled": true, | |
"latex-workshop.latex.autoClean.run": "onFailed", | |
"latex-workshop.latex.clean.fileTypes": [ | |
".aux", | |
"*.aux", | |
"*.bbl", | |
"*.blg", | |
"*.idx", | |
"*.ind", | |
"*.lof", | |
"*.lot", | |
"*.out", | |
"*.toc", | |
"*.acn", | |
"*.acr", | |
"*.alg", | |
"*.glg", | |
"*.glo", | |
"*.gls", | |
"*.ist", | |
"*.fls", | |
"*.log", | |
"*.fdb_latexmk", | |
"*.synctex.gz" | |
], | |
"latex-workshop.latex.clean.subfolder.enabled": true, | |
"latex-workshop.latex.tools": [ | |
{ | |
"name": "latexmk", | |
"command": "latexmk", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"-pdf", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "xelatex", | |
"command": "xelatex", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "pdflatex", | |
"command": "pdflatex", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "biber", | |
"command": "biber", | |
"args": [ | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "bibtex", | |
"command": "bibtex", | |
"args": [ | |
"%DOCFILE%" | |
] | |
} | |
], | |
"latex-workshop.latex.recipes": [ | |
{ | |
"name": "latexmk", | |
"tools": [ | |
"latexmk" | |
] | |
}, | |
{ | |
"name": "pdflatex -> bibtex -> pdflatex*2", | |
"tools": [ | |
"pdflatex", | |
"bibtex", | |
"pdflatex", | |
"pdflatex" | |
] | |
}, | |
{ | |
"name": "xelatex -> biber -> xelatex*2", | |
"tools": [ | |
"xelatex", | |
"biber", | |
"xelatex", | |
"xelatex" | |
] | |
}, | |
], | |
"latex-workshop.view.pdf.external.command": { | |
"command": "open", | |
"args": [ | |
"-a", | |
"PDF Expert.app", | |
"%PDF%" | |
] | |
}, | |
"latex-workshop.view.pdf.external.synctex": { | |
"command": "/Applications/Skim.app/Contents/SharedSupport/displayline", | |
"args": [ | |
"-r", | |
"%LINE%", | |
"%PDF%", | |
"%TEX%" | |
] | |
}, | |
"latex-workshop.message.warning.show": false, | |
"latex-workshop.synctex.afterBuild.enabled": true, | |
"latex-workshop.view.pdf.hand": true, | |
"less.lint.argumentsInColorFunction": "ignore", | |
"python.disableInstallationCheck": true, | |
"python.linting.mypyEnabled": true, | |
"python.linting.pep8Enabled": true, | |
"python.linting.pylintEnabled": false, | |
"julia.executablePath": "/Users/jc/.local/bin/julia", | |
"latex-workshop.latex.build.clearLog.everyRecipeStep.enabled": false, | |
"latex-workshop.latex.autoBuild.run": "never", | |
"latex-workshop.message.error.show": false, | |
"latex-workshop.docker.image.latex": "synctex", | |
"latex-workshop.synctex.path": "/Library/TeX/texbin/synctex", | |
"latex-workshop.view.pdf.viewer": "external", | |
"julia.runLinter": false, | |
"editor.formatOnSave": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment