Skip to content

Instantly share code, notes, and snippets.

@felipecodes
Last active April 29, 2020 03:10
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 felipecodes/66f6decbff45339058cff4ddc3b17b8b to your computer and use it in GitHub Desktop.
Save felipecodes/66f6decbff45339058cff4ddc3b17b8b to your computer and use it in GitHub Desktop.
vscode user settings
{
"workbench.editor.tabSizing": "shrink",
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Hop Light",
"workbench.editor.tabCloseButton": "right",
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"editor.cursorWidth": 2,
"editor.cursorStyle": "line",
"editor.wordWrap": "off",
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontWeight": "300",
"editor.cursorBlinking": "solid",
"editor.colorDecorators": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.rulers": [
80,
100
],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.next": true,
"**/node_modules": true,
"**/dist": true
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.snippetSuggestions": "top",
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"window.closeWhenEmpty": false,
"editor.detectIndentation": false,
"files.insertFinalNewline": true,
"editor.find.seedSearchStringFromSelection": true,
"editor.matchBrackets": "always",
"window.openFilesInNewWindow": "off",
"workbench.editor.enablePreview": true,
"editor.scrollBeyondLastLine": true,
"editor.useTabStops": true,
"window.zoomLevel": 1,
"workbench.iconTheme": "material-icon-theme",
"breadcrumbs.enabled": true,
"diffEditor.renderSideBySide": false,
"search.useGlobalIgnoreFiles": true,
"editor.fontLigatures": true,
"editor.fontFamily": "'Operator Mono', monospace",
"terminal.integrated.fontWeight": "300",
"terminal.integrated.fontWeightBold": "300",
"terminal.integrated.rendererType": "dom",
"terminal.integrated.fontSize": 14,
"workbench.fontAliasing": "auto",
"search.smartCase": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"typescript.suggest.completeJSDocs": true,
"typescript.suggest.enabled": true,
"javascript.suggest.completeFunctionCalls": true,
"typescript.suggest.completeFunctionCalls": true,
"peacock.favoriteColors": [
{
"name": "Angular Red",
"value": "#b52e31"
},
{
"name": "Auth0 Orange",
"value": "#eb5424"
},
{
"name": "Azure Blue",
"value": "#007fff"
},
{
"name": "C# Purple",
"value": "#68217A"
},
{
"name": "Gatsby Purple",
"value": "#639"
},
{
"name": "Go Cyan",
"value": "#5dc9e2"
},
{
"name": "Java Blue-Gray",
"value": "#557c9b"
},
{
"name": "JavaScript Yellow",
"value": "#f9e64f"
},
{
"name": "Mandalorian Blue",
"value": "#1857a4"
},
{
"name": "Node Green",
"value": "#215732"
},
{
"name": "React Blue",
"value": "#00b3e6"
},
{
"name": "Something Different",
"value": "#832561"
},
{
"name": "Vue Green",
"value": "#42b883"
}
],
"material-icon-theme.activeIconPack": "react_redux",
"javascript.updateImportsOnFileMove.enabled": "never",
"yaml.schemas": {
"file:///Users/felipecoder/.vscode/extensions/me-dutour-mathieu.vscode-github-actions-2.2.7/schemas/workflow.schema.json": "/.github/workflows/*.yml",
"file:///Users/felipecoder/.vscode/extensions/me-dutour-mathieu.vscode-github-actions-2.2.7/schemas/action.schema.json": "/action.yml"
},
"editor.fontSize": 14
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment