Skip to content

Instantly share code, notes, and snippets.

@harshbaldwa
Last active November 29, 2021 21:22
Show Gist options
  • Save harshbaldwa/ba863d62d51dbf39306bbce712e3d62f to your computer and use it in GitHub Desktop.
Save harshbaldwa/ba863d62d51dbf39306bbce712e3d62f to your computer and use it in GitHub Desktop.
Stores the VSCode Configuration
{
"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