Skip to content

Instantly share code, notes, and snippets.

@2rohityadav
Created April 20, 2023 16:47
Show Gist options
  • Save 2rohityadav/054ad8b1efbc2c51cd4145e1553b7227 to your computer and use it in GitHub Desktop.
Save 2rohityadav/054ad8b1efbc2c51cd4145e1553b7227 to your computer and use it in GitHub Desktop.
vscode-settings.json | mac Only
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"editor.inlayHints.fontFamily": "Fira Code",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.linkedEditing": true,
"javascript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifier": "non-relative",
"svelte.enable-ts-plugin": true,
"editor.guides.bracketPairs": true,
"workbench.editor.untitled.hint": "hidden",
"editor.inlineSuggest.enabled": true,
"editor.mouseWheelZoom": true,
"terminal.integrated.fontSize": 14,
"prettier.singleQuote": true,
"peacock.affectActivityBar": false,
"peacock.affectTitleBar": false,
"console-ninja.toolsToEnableSupportAutomaticallyFor": {
"live-server": true,
"live-preview": true
},
"prettier.jsxSingleQuote": true,
"prettier.singleAttributePerLine": true,
// eslint fixed on saving the file
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": ["javascript", "typescript"],
"remote.SSH.defaultExtensions": ["gitpod.gitpod-remote-ssh"],
"codegpt.apiKey": "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",
"chatgpt.gpt3.apiKey": "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",
"easycode.userEmail": "[email protected]",
"tabnine.experimentalAutoImports": true,
"workbench.editor.enablePreview": false,
// Don't update the extension automatically
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"settingsSync.ignoredExtensions": ["wallabyjs.quokka-vscode"],
// markdown allows some html formatting
"markdownlint.config": {
"MD033": {
"allowed_elements": ["details", "a", "h4", "h5"]
}
},
"peacock.favoriteColors": [
{
"name": "Angular Red",
"value": "#dd0531"
},
{
"name": "Azure Blue",
"value": "#007fff"
},
{
"name": "JavaScript Yellow",
"value": "#f9e64f"
},
{
"name": "Mandalorian Blue",
"value": "#1857a4"
},
{
"name": "Node Green",
"value": "#215732"
},
{
"name": "React Blue",
"value": "#61dafb"
},
{
"name": "Something Different",
"value": "#832561"
},
{
"name": "Svelte Orange",
"value": "#ff3d00"
},
{
"name": "Vue Green",
"value": "#42b883"
}
],
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"quokka.suppressExpirationNotifications": true,
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"git.openRepositoryInParentFolders": "never",
"aws.telemetry": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment