Skip to content

Instantly share code, notes, and snippets.

@mpgxc
Created April 23, 2024 13:12
Show Gist options
  • Save mpgxc/e16d6d467d7240d9a2e4a9192b554027 to your computer and use it in GitHub Desktop.
Save mpgxc/e16d6d467d7240d9a2e4a9192b554027 to your computer and use it in GitHub Desktop.
vscode-settings.json
{
"editor.tabSize": 2,
"editor.fontWeight": "500",
"editor.fontFamily": "JetBrains Mono",
"editor.renderWhitespace": "none",
"editor.accessibilitySupport": "off",
"editor.fontLigatures": true,
"editor.inlineSuggest.enabled": true,
"editor.semanticHighlighting.enabled": true,
"editor.screenReaderAnnounceInlineSuggestion": true,
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.cursorBlinking": "expand",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorWidth": 3,
"editor.rulers": [80, 120],
"editor.formatOnSave": true,
"typescript.format.enable": true,
"javascript.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript", "typescript"],
"editor.minimap.autohide": true,
"editor.minimap.scale": 2,
"editor.stickyScroll.enabled": true,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleDeclarations": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeight": "400",
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.gpuAcceleration": "on",
"workbench.editor.labelFormat": "short",
"workbench.tree.indent": 20,
"workbench.tree.renderIndentGuides": "always",
"workbench.iconTheme": "material-icon-theme",
"workbench.productIconTheme": "fluent-icons",
"workbench.startupEditor": "none",
"workbench.colorTheme": "IDX Monospace Dark",
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"liveServer.settings.donotShowInfoMsg": true,
"extensions.ignoreRecommendations": true,
"editor.unicodeHighlight.nonBasicASCII": false,
"git.openRepositoryInParentFolders": "never",
"gitlens.advanced.messages": {
"suppressLineUncommittedWarning": true
},
"git.suggestSmartCommit": true,
"diffEditor.maxComputationTime": 0,
"diffEditor.ignoreTrimWhitespace": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment