Skip to content

Instantly share code, notes, and snippets.

@fsainz
Created November 6, 2020 10:50
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 fsainz/dde5ef177682fcbf883e3ccd714eeb24 to your computer and use it in GitHub Desktop.
Save fsainz/dde5ef177682fcbf883e3ccd714eeb24 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Material Theme Palenight High Contrast",
"workbench.iconTheme": "eq-material-theme-icons",
"window.zoomLevel": 0,
"ruby.intellisense": "rubyLocate",
"ruby.lint": {
"rubocop": true
},
"workbench.startupEditor": "readme",
"ruby.format": "rubocop",
"editor.fontSize": 14,
"editor.rulers": [80, 120],
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.formatTool": "goimports",
"editor.formatOnSave": true,
//"editor.formatOnSaveMode": "modifications",
"editor.suggestSelection": "first",
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll.eslint": true
},
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"diffEditor.ignoreTrimWhitespace": false,
"go.useLanguageServer": true,
"go.testTimeout": "200s",
"go.vetOnSave": "package",
"go.testEnvVars": {
"GO_ENV": "test"
},
"files.eol": "\n",
"go.testOnSave": true,
"liveshare.featureSet": "insiders", // formatting only supports LF line endings,
"terminal.integrated.shell.osx": "/bin/zsh",
"vscode-run-rspec-file.custom-command": "dsh bin/rspec",
"gitlens.hovers.currentLine.over": "line",
"editor.wrappingIndent": "indent",
"ruby.useLanguageServer": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.formatOnSave": false
},
"editor.renderControlCharacters": true,
"terminal.integrated.scrollback": 999999,
"files.autoSave": "onFocusChange",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "smart",
"editor.snippetSuggestions": "top",
"editor.suggest.localityBonus": true,
"files.autoGuessEncoding": true,
"files.defaultLanguage": "${activeEditorLanguage}",
"files.trimFinalNewlines": true,
"[ruby]": {
"editor.defaultFormatter": "castwide.solargraph"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"solargraph.formatting": true,
"editor.glyphMargin": false,
"[elixir]": {
"editor.defaultFormatter": "JakeBecker.elixir-ls"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"editor.formatOnPaste": true,
"elixirLS.suggestSpecs": true,
"javascript.format.enable": false,
"json.format.enable": false,
"vetur.format.defaultFormatter.js": "prettier-eslint",
"vetur.format.enable": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment