Skip to content

Instantly share code, notes, and snippets.

@anoguchi
Last active August 3, 2024 16:19
Show Gist options
  • Save anoguchi/03449e4a007d3d0f835c4b4b48ad9501 to your computer and use it in GitHub Desktop.
Save anoguchi/03449e4a007d3d0f835c4b4b48ad9501 to your computer and use it in GitHub Desktop.
VSCode - Work Settings
{
"editor.renderWhitespace": "none",
"editor.fontLigatures": false,
"breadcrumbs.enabled": true,
"terminal.integrated.fontSize": 12,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 79,
"editor.tabSize": 2,
"explorer.sortOrder": "type",
"explorer.compactFolders": false,
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"workbench.activityBar.location": "hidden",
"liveServer.settings.donotShowInfoMsg": true,
"editor.rulers": [79, 119],
"editor.guides.indentation": true,
"editor.fontFamily": "\"MesloLGS NF\" ,Consolas, 'Courier New', monospace",
"editor.mouseWheelZoom": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.linkedEditing": true,
"editor.semanticHighlighting.enabled": false,
"files.autoSave": "off",
"window.restoreWindows": "none",
"liveServer.settings.fullReload": true,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.parameterHints.enabled": false,
"javascript.suggest.autoImports": true,
"cSpell.language": "en,pt",
"editor.suggestSelection": "first",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.suggest.autoImports": true,
"typescript.preferences.preferTypeOnlyAutoImports": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
".venv": true,
".vscodelocal": true,
"**/__pycache__": true,
"*.egg-info": true,
"build": true
},
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"github.copilot.editor.enableAutoCompletions": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"window.commandCenter": false,
"workbench.colorTheme": "Min Dark",
"symbols.hidesExplorerArrows": false,
"workbench.iconTheme": "symbols",
"cSpell.ignoreWords": [
"Consolas",
"Meslo",
"donot",
"esbenp",
"pycache",
"venv",
"vscodelocal"
],
"workbench.productIconTheme": "fluent-icons",
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment