Skip to content

Instantly share code, notes, and snippets.

@silavsale
Created August 10, 2020 22:56
Show Gist options
  • Save silavsale/41d4e802a3e331291c76c4fe095c619a to your computer and use it in GitHub Desktop.
Save silavsale/41d4e802a3e331291c76c4fe095c619a to your computer and use it in GitHub Desktop.
{
// SETTINGS
"workbench.settings.editor": "json",
// EDITOR
"editor.fontSize": 17,
"editor.fontLigatures": true,
// "editor.fontFamily": "Fira Code",
"editor.copyWithSyntaxHighlighting": false,
"editor.multiCursorModifier": "alt",
"editor.cursorSmoothCaretAnimation": false,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "all",
// "editor.suggestSelection": "first",
"editor.minimap.scale": 1,
"editor.minimap.enabled": false,
"emmet.triggerExpansionOnTab": true,
// **********************
// ** WORKBENCH **
// **********************
"window.zoomLevel": 0,
"files.autoSaveDelay": 50000,
"files.autoSave": "afterDelay",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorCustomizations": {},
"workbench.tree.indent": 20,
"workbench.iconTheme": "vscode-icons",
"workbench.statusBar.visible": true,
"breadcrumbs.enabled": true,
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
// Eslint
"eslint.format.enable": true,
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"eslint.enable": true,
// "editor.tabSize": 4,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.alwaysShowStatus": true,
"eslint.validate": ["javascript", "javascriptreact"],
// FOLDERS COLORS
// Prettier
"prettier.disableLanguages": ["javascript"],
//Terminal
// "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"
"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\cmd.exe",
"terminal.integrated.shellArgs.windows": ["/k C:\\Cmder\\vendor\\init.bat"],
// Suggestions
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.suggestSelection": "first"
// "editor.suggestSelection": "first"
// "editor.quickSuggestions": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment