Skip to content

Instantly share code, notes, and snippets.

@Jezfx
Last active April 12, 2020 18:15
Show Gist options
  • Save Jezfx/910b10421ae2929b54fc3f619691cfc7 to your computer and use it in GitHub Desktop.
Save Jezfx/910b10421ae2929b54fc3f619691cfc7 to your computer and use it in GitHub Desktop.
{
"workbench.sideBar.location": "left",
"editor.minimap.enabled": false,
// "editor.detectIndentation": true,
"editor.tabSize": 2,
"todohighlight.isEnable": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Framer Syntax",
"window.zoomLevel": 0,
"editor.renderControlCharacters": false,
"explorer.confirmDragAndDrop": false,
"files.trimTrailingWhitespace": true,
// "editor.rulers": [100],
// Autocomplete -------------
"editor.snippetSuggestions": "top",
// Emmet -------------
"emmet.syntaxProfiles": {
"javascript": "jsx",
"xml": {
"attr_quotes": "single"
}
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"eslint.alwaysShowStatus": true,
// Fonts -------------
"terminal.integrated.fontFamily": "'Meslo LG L DZ for Powerline', Monaco, Menlo, 'DejaVu Sans Mono', 'Lucida Console', monospace",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"git.confirmSync": false,
"explorer.confirmDelete": false,
"git.enableSmartCommit": true,
"files.useExperimentalFileWatcher": true,
// Exclude -------------
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/web/node_modules": true,
"**/web/build": true, // will change frequently by build command
"**/admin/node_modules": true
},
"diffEditor.ignoreTrimWhitespace": true,
"editor.detectIndentation": false,
"workbench.panel.defaultLocation": "right",
"diffEditor.renderSideBySide": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"javascript.suggest.autoImports": false,
"typescript.suggest.autoImports": false,
"terminal.integrated.rendererType": "dom",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.formatOnSave": true,
"eslint.autoFixOnSave": true,
"eslint.lintTask.enable": true,
"eslint.packageManager": "yarn",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"explorer.compactFolders": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment