Skip to content

Instantly share code, notes, and snippets.

@xkeshav
Last active September 21, 2021 16:59
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 xkeshav/07d2b8b972390c84efeb225072e1f71c to your computer and use it in GitHub Desktop.
Save xkeshav/07d2b8b972390c84efeb225072e1f71c to your computer and use it in GitHub Desktop.
VS code recommeneded user settings
{
"editor.snippetSuggestions": "top",
"editor.wordWrap": "on",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"[html]": {
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
},
"files.defaultLanguage": "markdown",
"editor.insertSpaces": false,
"editor.detectIndentation": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.cursorBlinking": "solid",
"editor.find.globalFindClipboard": true,
"editor.fontFamily": "Fira code, Operator Mono, Inconsolata, Monofur, Menlo",
// "editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"editor.lineHeight": 22,
"editor.formatOnType": true,
"editor.letterSpacing": 0.5,
"editor.tabSize": 2,
"editor.renderWhitespace": "none",
"files.autoSave": "onFocusChange",
"files.autoSaveDelay": 1000,
"files.trimTrailingWhitespace": true,
"prettier.printWidth": 100,
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"prettier.eslintIntegration": true,
"workbench.colorTheme": "JSFiddle-like-syntax-vscode",
"editor.selectionHighlight": true,
"terminal.integrated.copyOnSelection": true,
"window.title": "${activeEditorMedium}${separator}${rootName}",
"[typescript]": {
"editor.formatOnSave": true,
"editor.formatOnPaste": true
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.renderWhitespace": "all",
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
},
"search.exclude": {
"node_modules/": true,
"bower_components/": true,
"e2e/": true,
"dist": true
},
"workbench.activityBar.visible": true,
"workbench.colorCustomizations": {
"editor.selectionBackground": "#b4afaf",
"editor.selectionHighlightBackground": "#d9ebaa",
"statusBar.background": "#33101a",
"statusBar.noFolderBackground": "#0A0A0D",
"statusBar.debuggingBackground": "#511f1f"
},
"editor.minimap.enabled": false,
"extensions.ignoreRecommendations": true,
"diffEditor.ignoreTrimWhitespace": true,
"workbench.editor.showTabs": true,
"workbench.sideBar.location": "left",
"extensions.showRecommendationsOnlyOnDemand": true,
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"vsicons.projectDetection.autoReload": true,
"workbench.iconTheme": "seti",
"vsicons.dontShowNewVersionMessage": true,
"editor.acceptSuggestionOnEnter": "off",
"editor.find.autoFindInSelection": true,
"window.closeWhenEmpty": true,
"files.encoding": "utf8",
"editor.showFoldingControls": "always",
"editor.find.seedSearchStringFromSelection": true,
"window.openFilesInNewWindow": "off",
"editor.scrollBeyondLastLine": true,
"editor.tabCompletion": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": true,
"gitlens.mode.active": "zen",
"gitlens.gitExplorer.location": "explorer",
"gitlens.historyExplorer.location": "scm",
"gitlens.resultsExplorer.location": "explorer",
"typescript.preferences.quoteStyle": "single",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.showUnused": true,
"files.hotExit": "onExit",
"debug.toolBarLocation": "floating",
"workbench.editor.openSideBySideDirection": down,
"cSpell.userWords": [
"Keshav",
"formdata",
"postdata",
"progressbar",
"readonly",
"toastr"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment