Skip to content

Instantly share code, notes, and snippets.

@theClarkSell
Created February 27, 2022 14:19
Show Gist options
  • Save theClarkSell/2fea56b6cae7d2c0ee5fbac96e738cd8 to your computer and use it in GitHub Desktop.
Save theClarkSell/2fea56b6cae7d2c0ee5fbac96e738cd8 to your computer and use it in GitHub Desktop.
SvelteKit VSCode Settings
{
"editor.rulers": [80],
"editor.formatOnSave": true,
"prettier.tabWidth": 2,
"editor.insertSpaces": false,
"editor.tabSize": 2,
"editor.snippetSuggestions": "top",
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"workbench.colorCustomizations": {
"titleBar.activeForeground": "#000",
"titleBar.inactiveForeground": "#000000CC",
"titleBar.activeBackground": "#4D51F7",
"titleBar.inactiveBackground": "#4D51F7"
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"svelte.plugin.svelte.format.config.svelteBracketNewLine": false,
"svelte.plugin.svelte.rename.enable": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment