Skip to content

Instantly share code, notes, and snippets.

@lionello
Last active August 5, 2019 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lionello/72ea5a8aac3cc0648b690e4d6b7951a3 to your computer and use it in GitHub Desktop.
Save lionello/72ea5a8aac3cc0648b690e4d6b7951a3 to your computer and use it in GitHub Desktop.
VSCode user settings JSON
{
"telemetry.enableTelemetry": false,
"window.openFilesInNewWindow": "off",
"go.useLanguageServer": true,
"terminal.integrated.shell.windows": "/Users/llunesu/.nix-profile/bin/fish",
"workbench.colorTheme": "Dark (Monokai)",
"editor.rulers": [
0, 80, 120
],
"files.trimTrailingWhitespace": true,
"vsicons.dontShowNewVersionMessage": true,
"extensions.ignoreRecommendations": false,
"workbench.startupEditor": "newUntitledFile",
"editor.tokenColorCustomizations": {
"textMateRules": [{
"scope": [
"comment support.class",
"comment support.type",
"comment entity.name.type",
"comment entity.name.class",
"comment keyword.operator"
],
"settings": {
"foreground": "#A6E22E"
}
},
{
"scope": [
"comment variable",
"comment support.variable",
],
"settings": {
"foreground": "#ffffff"
}
}
]
},
"python.disablePromptForFeatures": [
"pylint"
],
"[python]": {},
"git.ignoreMissingGitWarning": true,
"search.globalFindClipboard": true,
"editor.find.globalFindClipboard": true,
"explorer.confirmDragAndDrop": false,
// As per https://marketplace.visualstudio.com/items?itemName=chenxsan.vscode-standardjs
"javascript.validate.enable": false,
"standard.usePackageJson": true,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
// https://github.com/BetterThanTomorrow/calva-fmt#parinfer-and-auto-adjust-cursor-on-new-lines
"calva.fmt.autoAdjustIndentOnNewLines": false,
"git.autofetch": true,
"python.linting.enabled": false,
"python.pythonPath": "/usr/local/bin/python3",
"search.location": "sidebar",
"editor.renderWhitespace": "none",
"jest.autoEnable": false,
"jest.runAllTestsFirst": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"nativescript.analytics.enabled": true,
"python.jediEnabled": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.watcherExclude": {
"/nix/**": true
},
"java.configuration.checkProjectSettingsExclusions": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"java.errors.incompleteClasspath.severity": "ignore",
//"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment