Skip to content

Instantly share code, notes, and snippets.

@rebornplusplus
Created February 13, 2020 06:36
Show Gist options
  • Save rebornplusplus/c03f8958056f26ba63c087684576d26b to your computer and use it in GitHub Desktop.
Save rebornplusplus/c03f8958056f26ba63c087684576d26b to your computer and use it in GitHub Desktop.
VS Code Settings
{
"editor.fontFamily": "'Ubuntu Mono'",
"editor.fontSize": 14,
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "vscode-icons",
"editor.insertSpaces": false,
"editor.detectIndentation": true,
"code-runner.executorMap": {
"c": "gcc -std=c11 $fullFileName && ./a.out",
"cpp": "g++ -std=c++14 $fullFileName && ./a.out",
},
"code-runner.runInTerminal": true,
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.recipes": [
{
"name": "pdflatex",
"tools": [
"pdflatex"
]
}
],
"latex-workshop.latex.tools":[
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"--shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
],
"env": {}
}
],
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment