Created
October 20, 2020 13:00
-
-
Save nikkaroraa/d68543a8bf8fe475a401687d5002e900 to your computer and use it in GitHub Desktop.
vscode-settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Place your settings in this file to overwrite the default settings | |
"workbench.settings.editor": "json", | |
"editor.formatOnSave": false, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.detectIndentation": true, | |
"editor.fontSize": 18, | |
"editor.lightbulb.enabled": false, | |
"editor.parameterHints.enabled": false, | |
"editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": false, | |
"editor.cursorBlinking": "solid", | |
"editor.wordBasedSuggestions": false, | |
"editor.suggest.localityBonus": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.acceptSuggestionOnEnter": "off", | |
"[javascript]": { | |
"editor.formatOnSave": true, | |
// "editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.suggestSelection": "recentlyUsed", | |
"editor.suggest.filteredTypes": { | |
"keyword": false | |
} | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.suggestSelection": "recentlyUsed", | |
"editor.suggest.filteredTypes": { | |
"keyword": false | |
} | |
}, | |
"editor.tabSize": 2, | |
"editor.renderWhitespace": "boundary", | |
"editor.glyphMargin": false, | |
"editor.folding": false, | |
"files.exclude": { | |
"USE_GITIGNORE": true | |
}, | |
"javascript.suggest.autoImports": false, | |
"javascript.validate.enable": false, | |
"search.exclude": { | |
"**/node_modules": false, | |
"**/bower_components": true, | |
"**/coverage": true, | |
"**/dist": true, | |
"**/build": true, | |
"**/.build": true, | |
"**/.gh-pages": true | |
}, | |
"search.useIgnoreFiles": true, | |
"eslint.autoFixOnSave": false, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"eslint.options": { | |
"env": { | |
"browser": true, | |
"jest/globals": true, | |
"es6": true | |
}, | |
"parserOptions": { | |
"ecmaVersion": 2018, | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"rules": { | |
"no-debugger": "off" | |
} | |
}, | |
"terminal.integrated.shellArgs.osx": [ | |
"-l" | |
], | |
"terminal.integrated.scrollback": 10000, | |
"files.associations": { | |
"*.md": "mdx" | |
}, | |
"explorer.openEditors.visible": 0, | |
"editor.lineNumbers": "on", | |
"breadcrumbs.enabled": true, | |
"prettier.bracketSpacing": false, | |
"prettier.printWidth": 80, | |
"prettier.tabWidth": 2, | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "all", | |
"prettier.jsxBracketSameLine": false, | |
"prettier.semi": false, | |
"prettier.useTabs": false, | |
"prettier.proseWrap": "always", | |
"prettier.requireConfig": true, | |
"local-history.absolute": true, | |
"local-history.path": "/Users/nikhil/.vscode-history", | |
"grunt.autoDetect": "off", | |
"npm.runSilent": true, | |
"gulp.autoDetect": "off", | |
"workbench.iconTheme": "material-icon-theme", | |
"explorer.confirmDragAndDrop": false, | |
"workbench.sideBar.location": "right", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": false, | |
"workbench.startupEditor": "none", | |
"window.zoomLevel": 0, | |
"editor.minimap.enabled": false, | |
"workbench.activityBar.visible": true, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.smoothScrolling": true, | |
"workbench.panel.defaultLocation": "right", | |
"php.suggest.basic": false, | |
"typescript.suggest.autoImports": false, | |
"editor.suggestSelection": "first", | |
"terminal.integrated.fontSize": 16, | |
"go.formatTool": "goimports", | |
"go.useLanguageServer": 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" | |
} | |
], | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": false | |
}, | |
"git.suggestSmartCommit": false, | |
"workbench.statusBar.visible": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [] | |
}, | |
"workbench.colorTheme": "Noctis Uva", | |
"liveServer.settings.donotVerifyTags": true, | |
"gitlens.gitCommands.closeOnFocusOut": true, | |
"yaml.customTags": [ | |
"!And", | |
"!And sequence", | |
"!If", | |
"!If sequence", | |
"!Not", | |
"!Not sequence", | |
"!Equals", | |
"!Equals sequence", | |
"!Or", | |
"!Or sequence", | |
"!FindInMap", | |
"!FindInMap sequence", | |
"!Base64", | |
"!Join", | |
"!Join sequence", | |
"!Cidr", | |
"!Ref", | |
"!Sub", | |
"!Sub sequence", | |
"!GetAtt", | |
"!GetAZs", | |
"!ImportValue", | |
"!ImportValue sequence", | |
"!Select", | |
"!Select sequence", | |
"!Split", | |
"!Split sequence" | |
], | |
"yaml.validate": false, | |
// egghead | |
/* | |
"editor.fontSize": 22, | |
"terminal.integrated.fontSize": 20, | |
"scm.diffDecorations": "none", | |
"editor.lineNumbers": "off", | |
"workbench.editor.showTabs": false, | |
"workbench.statusBar.visible": false, | |
"editor.cursorBlinking": "solid", | |
"breadcrumbs.enabled": false, | |
/**/ | |
// workshop | |
/* | |
"editor.fontSize": 22, | |
"terminal.integrated.fontSize": 20, | |
"scm.diffDecorations": "none", | |
"workbench.statusBar.visible": false, | |
"editor.cursorBlinking": "solid", | |
"window.zoomLevel": 1, | |
"workbench.colorTheme": "Visual Studio Light", | |
/**/ | |
// livestream | |
/* | |
"window.zoomLevel": 1, | |
"editor.fontSize": 22, | |
"terminal.integrated.fontSize": 20, | |
"scm.diffDecorations": "none", | |
"workbench.statusBar.visible": false, | |
"editor.cursorBlinking": "solid" | |
/**/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment