Last active
November 29, 2021 21:22
-
-
Save harshbaldwa/ba863d62d51dbf39306bbce712e3d62f to your computer and use it in GitHub Desktop.
Stores the 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
{ | |
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 12, | |
"editor.inlineSuggest.enabled": true, | |
"editor.rulers": [79], | |
"explorer.confirmDelete": false, | |
"explorer.sortOrder": "type", | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 2000, | |
"files.trimFinalNewlines": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}", | |
"workbench.colorTheme": "GitHub Dark Dimmed", | |
"workbench.sideBar.location": "right", | |
"zenMode.hideLineNumbers": false, | |
"zenMode.hideStatusBar": false, | |
"zenMode.hideTabs": false, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": true, | |
"markdown": false, | |
"python": true | |
}, | |
"python.defaultInterpreterPath": | |
"/usr/local/Caskroom/miniforge/base/envs/ddp/bin/python", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"settingsSync.ignoredExtensions": [ | |
"james-yu.latex-workshop" | |
], | |
"latex-workshop.latex.outDir": "./build", | |
"latex-workshop.latex.clean.subfolder.enabled": true, | |
"latex-workshop.latex.clean.fileTypes": [ "*.aux", "*.toc" ], | |
"latex-workshop.message.error.show": true, | |
"latex-workshop.latex.recipes": [ | |
{ | |
"name": "latexmk", | |
"tools": [ | |
"latexmk" | |
] | |
}, | |
{ | |
"name": "pdflatex -> bibtex -> pdflatex*2", | |
"tools": [ | |
"pdflatex", | |
"bibtex", | |
"pdflatex", | |
"pdflatex" | |
] | |
} | |
], | |
"latex-workshop.view.pdf.viewer": "tab", | |
"workbench.iconTheme": "material-icon-theme", | |
"python.linting.flake8Enabled": true, | |
"python.formatting.provider": "black" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment