Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mumairofficial/7671044778ad5c92a8c2b2826d48332d to your computer and use it in GitHub Desktop.

Select an option

Save mumairofficial/7671044778ad5c92a8c2b2826d48332d to your computer and use it in GitHub Desktop.
vs code settings gist
// Place your settings in this file to overwrite the default settings
{
// E
"editor.cursorStyle": "line",
"editor.codeLens": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 12,
"editor.formatOnPaste": false,
"editor.formatOnType": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.renderWhitespace": true,
"editor.minimap.enabled": false,
// F
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
// T
"terminal.integrated.fontSize": 12,
"terminal.integrated.shell.windows": "C:\\windows\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
"tslint.autoFixOnSave": true,
"typescript.check.tscVersion": false,
// W
"window.reopenFolders": "none",
"window.menuBarVisibility": "default",
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"workbench.colorTheme": "One Dark Pro",
// "workbench.colorCustomizations": {
// "tab.activeBackground": "#282c34",
// "activityBar.background": "#282c34",
// "editorGroup.background": "#282c34",
// "sideBar.background": "#282c34"
// }
"workbench.colorCustomizations": {
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"editorGroup.background": "#282c34",
"sideBar.background": "#282c34"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment