Skip to content

Instantly share code, notes, and snippets.

@jaamaalxyz
Created October 22, 2018 07:26
Show Gist options
  • Save jaamaalxyz/98d838523272b5f46d943afdfe8cdc96 to your computer and use it in GitHub Desktop.
Save jaamaalxyz/98d838523272b5f46d943afdfe8cdc96 to your computer and use it in GitHub Desktop.

{ "files.autoSave": "afterDelay", "files.autoSaveDelay": 100, "editor.minimap.enabled": true, "workbench.statusBar.visible": true, "workbench.activityBar.visible": true,

// Set the default "editor.formatOnSave": true, // Enable per-language "[javascript]": { "editor.formatOnSave": true }, "[python]": { "editor.insertSpaces": true, "editor.tabSize": 4 },

// Prettier "prettier.requireConfig": true,

// Emmet "emmet.includeLanguages": { "html": "html", "erb": "erb", "javascript": "javascriptreact", "vue": "html", "ejs": "html" },

"workbench.colorCustomizations": { "statusBar.background": "#333333", "statusBar.noFolderBackground": "#333333", "statusBar.debuggingBackground": "#263238" }, "editor.fontSize": 16, "editor.fontFamily": "Fira Code", "editor.fontLigatures": true,

"css.validate": false, "scss.validate": false, "less.validate": false, "editor.wordWrap": "on",

// Terminal "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe",

// Git Bash on Windows "terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe",

"window.zoomLevel": 0,

"editor.tabSize": 2,

// ESLint "eslint._legacyModuleResolve": true, "eslint.alwaysShowStatus": true, "eslint.autoFixOnSave": true, "eslint.provideLintTask": true,

// Theme "workbench.colorTheme": "Oceanic Next", "terminal.integrated.rendererType": "dom", "liveServer.settings.donotVerifyTags": true, "github.hosts": [{ "host": "https://github.com", "username": "oauth", "token": "system" } ], "javascript.updateImportsOnFileMove.enabled": "always" }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment