Skip to content

Instantly share code, notes, and snippets.

@nsisodiya
Created May 28, 2019 08:54
Show Gist options
  • Save nsisodiya/0f18b1530416e052f4458133ff62a161 to your computer and use it in GitHub Desktop.
Save nsisodiya/0f18b1530416e052f4458133ff62a161 to your computer and use it in GitHub Desktop.
vscode setting backup
{
"git.autofetch": true,
"git.enableSmartCommit": true,
"eslint.options": {
"configFile": "eslintrc.js"
},
"explorer.confirmDragAndDrop": false,
"editor.formatOnType": false,
"prettier.singleQuote": true,
"workbench.colorCustomizations": {
"activityBar.background": "#111111",
"activityBarBadge.background": "#FFA000",
"list.activeSelectionForeground": "#FFA000",
"list.inactiveSelectionForeground": "#FFA000",
"list.highlightForeground": "#FFA000",
"scrollbarSlider.activeBackground": "#FFA00050",
"editorSuggestWidget.highlightForeground": "#FFA000",
"textLink.foreground": "#FFA000",
"progressBar.background": "#FFA000",
"pickerGroup.foreground": "#FFA000",
"tab.activeBorder": "#FFA000",
"notificationLink.foreground": "#FFA000",
"editorWidget.resizeBorder": "#FFA000",
"editorWidget.border": "#FFA000",
"settings.modifiedItemIndicator": "#FFA000",
"settings.headerForeground": "#FFA000",
"panelTitle.activeBorder": "#FFA000",
"breadcrumb.activeSelectionForeground": "#FFA000",
"menu.selectionForeground": "#FFA000",
"menubar.selectionForeground": "#FFA000"
},
"editor.fontSize": 14,
"editor.lineHeight": 24,
// These are for subliminal, check them out.
"editor.hideCursorInOverviewRuler": true,
"editor.lineNumbers": "on",
"editor.overviewRulerBorder": false,
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "none",
"editor.quickSuggestions": true,
// end subliminal changes
"prettier.tabWidth": 4,
"editor.detectIndentation": true,
"workbench.iconTheme": null,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"prettier.parser": "flow",
"workbench.editor.enablePreview": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"jsx-sublime-babel-tags": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"emmet.showExpandedAbbreviation": "never",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"workbench.editor.showIcons": false,
"editor.multiCursorModifier": "ctrlCmd",
"explorer.confirmDelete": false,
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "always",
"materialTheme.accent": "Yellow",
"editor.cursorBlinking": "smooth",
"editor.fontWeight": "500",
"terminal.integrated.fontFamily": "monospace",
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"files.autoSave": "onFocusChange",
"go.autocompleteUnimportedPackages": true,
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.gocodeAutoBuild": true,
"go.formatTool": "gofmt",
"breadcrumbs.enabled": false,
"editor.wordWrapColumn": 120,
"editor.wrappingIndent": "indent",
"editor.largeFileOptimizations": false,
"debug.node.autoAttach": "on",
"terminal.integrated.rendererType": "dom",
"workbench.colorTheme": "Visual Studio Dark",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment