Skip to content

Instantly share code, notes, and snippets.

@mrhammadasif
Created August 5, 2020 18:24
Show Gist options
  • Save mrhammadasif/101328fe9ef5101bf03e7e0b6f687781 to your computer and use it in GitHub Desktop.
Save mrhammadasif/101328fe9ef5101bf03e7e0b6f687781 to your computer and use it in GitHub Desktop.
My VS Code Settings
{
"editor.fontSize": 13,
"editor.fontFamily": "'JetBrains Mono', monospace",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.renderLineHighlight": "all",
"editor.showFoldingControls": "always",
"editor.smoothScrolling": true,
"editor.stablePeek": false,
"emmet.includeLanguages": {
"vue-html": "html"
},
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "prettier",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"editor.formatOnSave": false,
"eslint.validate": [
"scss",
"typescript",
"javascript",
"javascriptreact",
"vue"
],
"files.exclude": {
"node_modules": true,
".yarn": true,
"dist": true,
"*.cs": true,
"*.csproj": true,
"obj": true,
"bin": true,
"Properties": true,
"appsettings.*": true
},
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"i18n-ally.localesPaths": "src/locales",
"i18n-ally.keystyle": "nested",
"editor.find.autoFindInSelection": "multiline",
"editor.fontLigatures": true,
"editor.suggest.shareSuggestSelections": true,
"files.defaultLanguage": "html",
"workbench.colorTheme": "Moonlight Italic",
"editor.lineHeight": 22,
"editor.suggestLineHeight": 20,
"editor.fontWeight": "400",
"workbench.startupEditor": "newUntitledFile",
"git.confirmSync": false,
"git.autofetch": true,
"git.enableSmartCommit": true,
"javascript.referencesCodeLens.enabled": true,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"workbench.iconTheme": "material-icon-theme",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.2,
"html.autoClosingTags": true,
"typescript.autoClosingTags": true,
"javascript.autoClosingTags": true,
"window.zoomLevel": 0,
"explorer.confirmDelete": false,
"[handlebars]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"emmet.triggerExpansionOnTab": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"scm.defaultViewMode": "tree",
"scm.alwaysShowActions": true,
"togglequotes.chars": [
"\"",
"'",
"`"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"explorer.confirmDragAndDrop": false,
"terminal.integrated.rendererType": "experimentalWebgl",
"editor.find.seedSearchStringFromSelection": false,
"html.format.indentHandlebars": true,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"extensions.ignoreRecommendations": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"debug.onTaskErrors": "debugAnyway",
"autoimport.doubleQuotes": true,
"autoimport.useSemiColon": false,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"debug.javascript.usePreview": true,
"files.autoSave": "off",
"javascript.updateImportsOnFileMove.enabled": "always",
"search.quickOpen.includeHistory": false,
"material-icon-theme.folders.color": "#90a4ae",
"i18n-ally.displayLanguage": "en"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment