Skip to content

Instantly share code, notes, and snippets.

@gevera
Created September 30, 2020 09:49
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 gevera/6fecd28072bced3b65e1bfb1f72018c3 to your computer and use it in GitHub Desktop.
Save gevera/6fecd28072bced3b65e1bfb1f72018c3 to your computer and use it in GitHub Desktop.
VS Code Settings Svelte without CSS intelisence
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.iconTheme": "vscode-icons",
"window.zoomLevel": 1,
"workbench.colorTheme": "Monokai",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"cSpell.userWords": [
"bootcamp",
"bootcamps"
],
"workbench.editor.labelFormat": "short",
"typescript.updateImportsOnFileMove.enabled": "never",
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"rest-client.rememberCookiesForSubsequentRequests": false,
"[css]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[svelte]": {
"editor.suggest.showClasses": true,
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"css.remoteStyleSheets": [
"https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css",
"https://unpkg.com/spectre.css/dist/spectre.min.css"
],
"html-css-class-completion.enableEmmetSupport": true,
"html-css-class-completion.includeGlobPattern": "**/*.{css,html,svelte}",
"emmet.includeLanguages": {
"[svelte]" : "html"
},
"svelte.plugin.css.completions.enable": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment