Skip to content

Instantly share code, notes, and snippets.

@soorajshankar
Created September 20, 2020 16:13
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 soorajshankar/77a49454dbc19aea3df17b5a7ef8da03 to your computer and use it in GitHub Desktop.
Save soorajshankar/77a49454dbc19aea3df17b5a7ef8da03 to your computer and use it in GitHub Desktop.
vscode
{
"editor.fontFamily": "FiraCode-Retina",
"editor.fontLigatures": true,
"workbench.sideBar.location": "right",
"git.autofetch": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"window.zoomLevel": 1,
"git.enableSmartCommit": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.colorTheme": "CodeSandbox Black",
"terminal.integrated.shell.osx": "/bin/zsh",
"tailwindCSS.includeLanguages": { "plaintext": "jsx" },
"emmet.triggerExpansionOnTab": true,
"tailwindCSS.emmetCompletions": true,
"css.lint.unknownAtRules": "ignore",
// "breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"[javascriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
}, // removes minimap
}
// {
// "breadcrumbs.enabled": false,
// "editor.minimap.enabled": false, // removes minimap
// "editor.renderWhitespace": "none", // removes whitespace chars
// "editor.renderIndentGuides": false, // removes indent guides
// "editor.overviewRulerBorder": false, // removes border from overview ruler (located on the right, same position as the scrollbar)
// "editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler
// "editor.lineNumbers": "off", // hide line numbers
// "editor.renderLineHighlight": "none", // removes line highlight
// "editor.matchBrackets": "never", // removes the highlight of matching brackets
// "editor.glyphMargin": false, // removes the space used mainly for debugging indicators
// "explorer.openEditors.visible": 0, // removes the open editors section at the top of the sidebar
// "workbench.activityBar.visible": false, // removes the activity bar
// "workbench.editor.showIcons": false, // removes icon from opened files in tabs
// "workbench.editor.tabCloseButton": "off", // removes cross icon from tabs
// "workbench.statusBar.visible": false, // removes the status bar
// "workbench.colorCustomizations": {
// "tab.activeBorder": "#0000" // removes border to highlight active tabs
// },
// "window.titleBarStyle": "custom",
// "scm.diffDecorationsGutterVisibility": "hover",
// // with https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css
// "vscode_custom_css.imports": ["file:///Users/sid/code/vscode.css"],
// "vscode_custom_css.policy": true
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment