Skip to content

Instantly share code, notes, and snippets.

@srdjanRakic
Last active June 15, 2022 09:06
Show Gist options
  • Save srdjanRakic/e0d038bf501dec28696f5e2d351eec44 to your computer and use it in GitHub Desktop.
Save srdjanRakic/e0d038bf501dec28696f5e2d351eec44 to your computer and use it in GitHub Desktop.
Personal VS Code User Settings
{
"workbench.startupEditor": "none",
"workbench.sideBar.location": "right",
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 17,
"editor.suggestFontSize": 16,
"editor.suggestLineHeight": 28,
"editor.renderWhitespace": "all",
"editor.fontLigatures": true,
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"editor.fontWeight": "400",
"editor.renderControlCharacters": false,
"editor.renderLineHighlight": "none",
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "solid",
"editor.emptySelectionClipboard": false,
"editor.quickSuggestionsDelay": 0,
"editor.formatOnPaste": true,
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"explorer.openEditors.visible": 0,
"files.trimTrailingWhitespace": true,
"emmet.showSuggestionsAsSnippets": true,
"editor.snippetSuggestions": "top",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html",
"plaintext": "jade"
},
"emmet.triggerExpansionOnTab": true,
"eslint.alwaysShowStatus": true,
"terminal.integrated.fontSize": 15,
"terminal.integrated.lineHeight": 1.5,
"terminal.integrated.cursorBlinking": false,
"terminal.integrated.cursorStyle": "line",
"javascript.validate.enable": false,
"editor.tabSize": 2,
"editor.formatOnSave": false,
"[javascript]": {
"editor.formatOnSave": false,
},
"[javascriptreact]": {
"editor.formatOnSave": false,
},
"[typescript]": {
"editor.formatOnSave": false,
},
"[typescriptreact]": {
"editor.formatOnSave": false,
},
"eslint.packageManager": "yarn",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"entity.name.type.class",
"keyword",
"constant",
"storage.modifier",
"storage.type.class.js"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
"editor.detectIndentation": false,
"terminal.integrated.showExitAlert": false,
"files.exclude": {
"**/node_modules": true
},
"workbench.view.alwaysShowHeaderActions": true,
"workbench.colorTheme": "Cobalt2",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"files.associations": {
"*.rain": "php"
},
"files.insertFinalNewline": true,
"gitlens.advanced.blame.customArguments": [],
"git.enableCommitSigning": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.tabs.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"window.zoomLevel": -1,
"editor.guides.indentation": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment