Skip to content

Instantly share code, notes, and snippets.

@soh-i
Created February 19, 2022 23:05
Show Gist options
  • Save soh-i/95f768c82c102a8e99f0ae610972adc3 to your computer and use it in GitHub Desktop.
Save soh-i/95f768c82c102a8e99f0ae610972adc3 to your computer and use it in GitHub Desktop.
VScode config
{
//Theme
"workbench.colorTheme": "Monokai Dimmed",
//Editor configs
"files.autoSave": "afterDelay",
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {"editorIndentGuide.background": "#00000000" }, // hide via 100% transparency.
"git.ignoreLegacyWarning": true,
"workbench.editor.enablePreview": false,
"window.restoreWindows": "all",
"terminal.integrated.fontSize": 14,
"editor.fontSize": 14, // font size for editor
"editor.lineHeight": 1.2, // line space for editor
"editor.formatOnType": true,
"workbench.productIconTheme": "material-product-icons",
"editor.wordWrap": "on",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.untitled.hint": "hidden",
"clock.dateFormat": "yyyy-mm-dd hh:MM TT", // Date format on the status bar
"timeline.excludeSources": ["git-history"],
"cSpell.enabled": false,
//Python configs
"python.defaultInterpreterPath": "/Users/mathilda/.pyenv/versions/3.10.0/bin/python",
"workbench.startupEditor": "none",
"python.diagnostics.sourceMapsEnabled": true,
"python.autoComplete.extraPaths": [".pyenv/versions/3.10.0/lib/python3.10/site-packages"],
"python.analysis.extraPaths": [".pyenv/versions/3.10.0/lib/python3.10/site-packages"],
"jupyter.generateSVGPlots": true,
"python.terminal.activateEnvironment": false,
//Julia configs
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"julia.symbolCacheDownload": true,
"julia.enableTelemetry": false,
//R configs
"r.lsp.diagnostics": false,
"r.workspaceViewer.showObjectSize": true,
"r.rterm.mac": "/Users/mathilda/.pyenv/shims/radian",
"r.bracketedPaste": true, // required for kniting on the console
"editor.renderWhitespace": "none",
"[r]": {
"editor.defaultFormatter": "Ikuyadeu.r",
"editor.formatOnSave": true,
"editor.wordSeparators": "`~!@#%$^&*()-=+[{]}\\|;:'\",<>/?",
"editor.tabSize": 4,
"editor.detectIndentation": true
},
// R markdown configs
"[rmd]": {
"editor.defaultFormatter": "Ikuyadeu.r",
"editor.formatOnSave": true,
"editor.wordSeparators": "`~!@#%$^&*()-=+[{]}\\|;:'\",<>/?",
"editor.tabSize": 4,
"editor.detectIndentation": true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment