Skip to content

Instantly share code, notes, and snippets.

@codeShaurya
Last active May 8, 2019 13:27
Show Gist options
  • Save codeShaurya/b147ff307ab35f9fdf5954af9b8a0575 to your computer and use it in GitHub Desktop.
Save codeShaurya/b147ff307ab35f9fdf5954af9b8a0575 to your computer and use it in GitHub Desktop.
{
"editor.formatOnPaste": true,
"prettier.printWidth": 80,
"prettier.stylelintIntegration": true,
"editor.minimap.maxColumn": 80,
"files.autoSave": "onFocusChange",
"files.autoGuessEncoding": true,
"files.trimFinalNewlines": true,
"window.menuBarVisibility": "visible",
"eslint.packageManager": "yarn",
"editor.fontSize": 14,
"editor.lineHeight": 22,
"editor.letterSpacing": 0.5,
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "600",
"prettier.eslintIntegration": true,
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"jsDocCompletion.enabled": false,
"workbench.colorCustomizations": {
"editorCursor.foreground": "#17ede2",
"activityBar.background": "#000C1D",
"activityBar.border": "#002c58",
"sideBar.background": "#001122",
"sideBar.border": "#102a44",
"sideBar.foreground": "#3f91b1",
"terminal.ansiYellow": "#fffb00",
"gitDecoration.ignoredResourceForeground": "#969090"
},
"editor.fontLigatures": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.cursorBlinking": "expand",
// Very important: Install this plugin: https://github.com/be5invis/vscode-custom-css
// you'll need to change this to an absolute path on your computer
"editor.renderWhitespace": "all",
"window.zoomLevel": -1.5,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"eslint.autoFixOnSave": true,
"[markdown]": {
"editor.formatOnSave": false
},
"editor.minimap.enabled": false,
"lebab.transforms": [
"arrow",
"for-of",
"for-each",
"arg-rest",
"arg-spread",
"obj-method",
"obj-shorthand",
"no-strict",
"exponent",
"multi-var",
"class"
],
"terminal.integrated.fontFamily": "monospace",
"git.confirmSync": true,
"terminal.integrated.rendererType": "dom",
"javascript.updateImportsOnFileMove.enabled": "prompt",
"window.titleBarStyle": "custom",
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"gitlens.mode.active": "review",
"workbench.iconTheme": "material-icon-theme",
"search.showLineNumbers": true,
"search.smartCase": true,
"debug.allowBreakpointsEverywhere": true,
"breadcrumbs.enabled": true,
"todo-tree.tags": [
"TODO",
"FIXME"
],
"todo-tree.defaultHighlight": {
"type": "line",
},
"todo-tree.customHighlight": {
"TODO": {
"type": "line",
"icon": "check",
"foreground": "#fff",
"background": "green",
"iconColour": "blue"
},
"FIXME": {
"icon": "alert",
"foreground": "white",
"background": "yellow",
"iconColour": "yellow"
}
},
"debug.enableAllHovers": true,
"workbench.quickOpen.preserveInput": true,
"workbench.colorTheme": "Night Owl",
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment