Skip to content

Commit

Permalink
import default vscode settings.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dmilon committed Jun 18, 2021
1 parent 6ff2ae0 commit 25d7dac
Showing 1 changed file with 54 additions and 36 deletions.
90 changes: 54 additions & 36 deletions settings.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,69 @@
{
"breadcrumbs.enabled": false,
"editor.detectIndentation": false,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.rulers": [80, 120],
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"editor.rulers": [
80
],
"editor.snippetSuggestions": "top",
"editor.tabSize": 2,
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"erb": "html"
},
"editor.fontSize": 17,
"editor.scrollBeyondLastLine": true,
"editor.showFoldingControls": "always",
"emmet.includeLanguages": { "erb": "html" },
"emmet.triggerExpansionOnTab": true,
"files.exclude": {
".asset-cache": true,
".bundle": true,
".git": true,
".ipynb_checkpoints": true,
".pytest_cache": true,
".sass-cache": true,
".svn": true,
"__pycache__": true,
"_site": true,
"build": true,
"coverage": true,
"dist": true,
"log": true,
"node_modules": true,
"public/packs": true,
"tmp": true
},
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.enabled": false,
"explorer.confirmDelete": false,
"window.restoreWindows": "none",
"workbench.colorTheme": "Monokai",
"workbench.settings.editor": "json",
"workbench.settings.openDefaultSettings": true,
"workbench.settings.useSplitJSON": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false
"workbench.iconTheme": "vscode-great-icons",
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": true,
"tmp": true,
"log": true,
".asset-cache": true,
".bundle": true,
".ipynb_checkpoints": true,
".pytest_cache": true,
".sass-cache": true,
".svn": true,
"__pycache__": true,
"_site": true,
"build": true,
"coverage": true,
"dist": true,
"public/packs": true,
},
"files.watcherExclude": {
"**/audits/**": true,
"**/coverage/**": true,
"**/log/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/vendor/**": true
},
"git.enabled": false,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"[python]": {
"editor.tabSize": 4,
},
// Ruby extension
"ruby.useBundler": true,
"ruby.useLanguageServer": true,
"ruby.format": "rubocop",
"ruby.lint": {
"rubocop": true
},
"ruby.intellisense": "rubyLocate",
}

0 comments on commit 25d7dac

Please sign in to comment.