Skip to content

Commit

Permalink
fix: update vscode to vscode-language-features
Browse files Browse the repository at this point in the history
esbenp.prettier-vscode seems to have stopped working
  • Loading branch information
cerico committed Aug 2, 2023
1 parent 7e1959c commit 9cb873a
Showing 1 changed file with 15 additions and 31 deletions.
46 changes: 15 additions & 31 deletions files/vscode.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
{
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.defaultFormatter": "vscode.css-language-features",
"editor.formatOnSave": true
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.defaultFormatter": "vscode.css-language-features",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true
},
"editor.wordWrapColumn": 120,
"editor.linkedEditing": true,
"editor.wordWrap": "bounded",
"editor.formatOnSave": false,
"editor.formatOnSave": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.accessibilitySupport": "off",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"bracketPairColorizer.depreciation-notice": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.defaultFormatter": "vscode.json-language-features",
"editor.formatOnSave": true
},
"window.zoomLevel": 1,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true
},
"workbench.colorTheme": "zombies_ate_my_neighbors",
Expand All @@ -38,45 +37,30 @@
"editor.detectIndentation": false
},
"[markdown]": {
"editor.quickSuggestions": true
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
},
"prettier.semi": false,
"prettier.printWidth": 120,
"prettier.trailingComma": "none",
"workbench.iconTheme": "vscode-icons",
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"npm.keybindingsChangedWarningShown": true,
"terminal.integrated.defaultProfile.osx": "zsh",
"editor.tabSize": 2,
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#5a8cc1",
"activityBar.background": "#5a8cc1",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#945bc4",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#5a8cc1",
"statusBar.background": "#404b85",
"statusBar.foreground": "#f6ead3",
"statusBarItem.hoverBackground": "#359268",
"statusBarItem.remoteBackground": "#404b85",
"statusBarItem.remoteForeground": "#f6ead3",
"titleBar.activeBackground": "#404b85",
"titleBar.activeForeground": "#f6ead3",
"titleBar.inactiveBackground": "#404b8599",
"titleBar.inactiveForeground": "#f6ead399"
}
"editor.tabSize": 2
}

0 comments on commit 9cb873a

Please sign in to comment.