Skip to content

Instantly share code, notes, and snippets.

@TexAgg
Last active June 8, 2017 23:33
Show Gist options
  • Save TexAgg/4d4c3ff8287dd788dc6a3d6f2ac0b1dc to your computer and use it in GitHub Desktop.
Save TexAgg/4d4c3ff8287dd788dc6a3d6f2ac0b1dc to your computer and use it in GitHub Desktop.
My settings for visual studio code
{
"editor.insertSpaces": false,
"files.associations": {
"*.pl": "prolog",
"*.m": "matlab",
"*.ins": "latex",
"*.dtx": "latex"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/.ipynb_checkpoints": true,
// https://ask.libreoffice.org/en/question/51950/lockfilenameodt/
"**/.~lock.*.odt#": true,
"**/.~lock.*.od*#": true
},
"git.confirmSync": false,
"typescript.check.tscVersion": false,
"extensions.autoUpdate": true,
"[cpp]": {
"editor.quickSuggestions": false
},
"[c]": {
"editor.quickSuggestions": false
},
"workbench.iconTheme": "vscode-icons",
"editor.wordWrap": "bounded",
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"cSpell.userWords": [
"Gaikema"
],
"cSpell.showStatus": false,
"java.errors.incompleteClasspath.severity": "ignore",
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment