Skip to content

Instantly share code, notes, and snippets.

@sergio-bobillier
Last active March 15, 2024 16:29
Show Gist options
  • Save sergio-bobillier/662a43896937be19ad2543f5b3812a08 to your computer and use it in GitHub Desktop.
Save sergio-bobillier/662a43896937be19ad2543f5b3812a08 to your computer and use it in GitHub Desktop.
Personal VS-Code settings
{
"editor.renderWhitespace": "boundary",
"breadcrumbs.enabled": true,
"workbench.colorTheme": "One Dark Pro",
"editor.tabSize": 2,
"editor.rulers": [
80,
100,
120
],
"files.enableTrash": false,
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"workbench.enableExperiments": false,
"workbench.startupEditor": "none",
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.highlightModifiedTabs": true,
"ruby.lintDebounceTime": 2000,
"ruby.lint": {
"reek": true,
"rubocop": true,
"ruby": true
},
"[git-commit]": {
"editor.rulers": [
50,
72
]
},
"[diff]": {
"files.trimFinalNewlines": false,
"files.trimTrailingWhitespace": false
},
"extensions.ignoreRecommendations": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"spellright.language": [
"en"
],
"spellright.documentTypes": [
"markdown",
"latex",
"git-commit"
],
"security.workspace.trust.enabled": false,
"workbench.editor.languageDetection": false,
"editor.unicodeHighlight.nonBasicASCII": false,
"editor.guides.bracketPairs": true,
"workbench.editor.enablePreview": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment