Skip to content

Instantly share code, notes, and snippets.

@abhiagrawal9
Last active June 1, 2024 02:02
Show Gist options
  • Save abhiagrawal9/e6cc86ea086d21a963a19506598a341d to your computer and use it in GitHub Desktop.
Save abhiagrawal9/e6cc86ea086d21a963a19506598a341d to your computer and use it in GitHub Desktop.
My VS Code - Custom Settings
{
"editor.fontSize": 13,
"terminal.integrated.fontSize": 13,
"window.zoomLevel": 0.5,
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 200,
"editor.linkedEditing": true,
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.resolveGlobalModules": true,
"explorer.confirmDragAndDrop": false,
"git.autofetch": true,
"todo-tree.filtering.excludeGlobs": ["node_modules"],
"git.confirmSync": false,
"security.workspace.trust.untrustedFiles": "open",
"highlight-matching-tag.styles": {
"opening": {
"left": {
"custom": {
"borderWidth": "0 0 0 2px",
"borderStyle": "solid",
"borderColor": "yellow",
"borderRadius": "1px",
"overviewRulerColor": "white"
}
},
"right": {
"custom": {
"borderWidth": "0 2px 0 0",
"borderStyle": "solid",
"borderColor": "yellow",
"borderRadius": "1px",
"overviewRulerColor": "white"
}
}
}
},
"editor.suggestSelection": "first",
"editor.cursorWidth": 2,
"editor.inlineSuggest.enabled": true,
"files.autoSaveDelay": 500,
"extensions.ignoreRecommendations": true,
"gitlens.codeLens.enabled": false,
"editor.hover.delay": 1000,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.guides.bracketPairs": "active",
"editor.guides.bracketPairsHorizontal": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact",
"postcss": "css"
},
"editor.minimap.enabled": false,
"vsicons.dontShowNewVersionMessage": true,
"files.associations": {
"*.css": "css",
"css": "css"
},
"files.autoSave": "onFocusChange",
"liveServer.settings.donotShowInfoMsg": true,
"editor.fontFamily": "JetBrains Mono", // Available options: JetBrains Mono
"editor.fontLigatures": true,
"workbench.iconTheme": "vscode-icons",
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"git.enableSmartCommit": true,
"explorer.confirmDelete": false,
"window.commandCenter": false,
"gitlens.launchpad.indicator.label": false,
"terminal.integrated.env.osx": {},
"console-ninja.featureSet": "Community",
"chatgpt.lang": "en",
"codium.editorButton": false, // make it true to show actions on functions and classes
"tabnine.codeLensEnabled": false, // make it true to show actions on functions and classes
"tabnine.experimentalAutoImports": true,
"cSpell.userWords": ["Abhishek", "tabnine"],
"cSpell.language": "lorem,en",
"terminal.integrated.cursorStyleInactive": "line"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment