Skip to content

Instantly share code, notes, and snippets.

@mateusvahl
Last active October 22, 2021 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mateusvahl/d71eb727410e76886930a22f8b252bae to your computer and use it in GitHub Desktop.
Save mateusvahl/d71eb727410e76886930a22f8b252bae to your computer and use it in GitHub Desktop.
{
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"debug.internalConsoleOptions": "openOnSessionStart",
"debug.toolBarLocation": "hidden",
"diffEditor.renderSideBySide": true,
"editor.bracketPairColorization.enabled": true,
"editor.accessibilitySupport": "off",
"editor.cursorBlinking": "smooth",
"editor.foldingStrategy": "auto",
"editor.fontFamily": "'JetBrains Mono', FiraCode-Retina, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.letterSpacing": 0.4,
"editor.smoothScrolling": true,
"editor.formatOnSave": false,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"editor.minimap.side": "right",
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderWhitespace": "all",
"editor.scrollBeyondLastLine": false,
"editor.selectionHighlight": false,
"editor.tabSize": 2,
"editor.wordWrap": "off",
"emmet.includeLanguages": {
"liquid": "html",
"mustache": "html"
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
"files.exclude": {
"__generated__": true,
".next": true,
// "**/assets": true,
"**/_dist": true,
"_js-dist": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.next": true,
"**/.svn": true,
"**/CVS": true,
"**/dist": true,
"**/node_modules/*/**": true,
"flow-typed": true,
"tmp": true
},
"html.format.indentInnerHtml": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"liquid.format": true,
"npm.fetchOnlinePackageInfo": false,
"prettier.resolveGlobalModules": true,
"search.showLineNumbers": true,
"search.smartCase": true,
"terminal.integrated.cursorStyle": "line",
"typescript.tsserver.log": "verbose",
"typescript.updateImportsOnFileMove.enabled": "always",
"window.restoreFullscreen": true,
"window.titleBarStyle": "native",
"workbench.activityBar.visible": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.showIcons": false,
"workbench.iconTheme": "city-lights-icons-vsc",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
"workbench.statusBar.visible": false,
"workbench.tips.enabled": false,
"workbench.view.alwaysShowHeaderActions": false,
"zenMode.hideTabs": false,
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.editor.untitled.hint": "hidden",
"workbench.colorTheme": "City Lights"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment