Skip to content

Instantly share code, notes, and snippets.

@mthipparthi
Created January 16, 2020 05:55
Show Gist options
  • Save mthipparthi/a3220bf96371c4badb5610a89f270307 to your computer and use it in GitHub Desktop.
Save mthipparthi/a3220bf96371c4badb5610a89f270307 to your computer and use it in GitHub Desktop.
{
// Controls the font size in pixels.
"editor.fontSize": 18,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 130,
"editor.formatOnSave": true,
"editor.renderIndentGuides": false,
"files.autoSave": "afterDelay",
"java.home": "/Library/Java/JavaVirtualMachines/jdk1.8.0_141.jdk/Contents/Home",
"gradle.useCommand": "gradle",
"workbench.iconTheme": "material-icon-theme",
"python.pythonPath": "./venv/bin/python",
"python.venvFolders": [
"./venv",
".virtualenv",
"./env"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestArgs": [
"-s",
"-v",
"-x"
],
"python.sortImports.path": "isort",
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"100"
],
// "[python]": {
// "editor.codeActionsOnSave": {
// "source.organizeImports": true
// }
// },
"python.sortImports.args": [
"-rc",
"--atomic"
],
"python.autoComplete.addBrackets": true,
// "go.goroot": "/usr/local/Cellar/go/1.10.3/libexec/bin",
// "go.inferGopath": true,
// "go.autocompleteUnimportedPackages": true,
// "go.gopath": ".",
"ruby.codeCompletion": true,
"ruby.format": true,
"ruby.intellisense": true,
"ruby.interpreter.commandPath": "/Users/mthippathi/.rbenv/shims/ruby",
"ruby.pathToBundler": "/Users/mthippathi/.rbenv/shims/bundle",
"ruby.useBundler": true,
"gitlens.keymap": "alternate",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"workbench.colorTheme": "Material Theme Darker",
"explorer.confirmDragAndDrop": false,
"java.errors.incompleteClasspath.severity": "ignore",
"python.jediEnabled": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"go.useLanguageServer": true,
"C_Cpp.updateChannel": "Insiders"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment