Last active
December 16, 2021 10:46
-
-
Save oguzkaracar/1708b5368e609f376b07f04535d5b274 to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains hidden or 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
{ | |
"editor.fontSize": 15, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"vsintellicode.typescript.completionsEnabled": true, | |
"javascript.suggest.includeCompletionsForImportStatements": true, | |
"javascript.suggest.autoImports": true, | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.startupEditor": "newUntitledFile", | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.wordWrap": "on", | |
"editor.wordWrapColumn": 110, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"eslint.codeAction.showDocumentation": { | |
"enable": true | |
}, | |
"editor.fontLigatures": true, | |
"editor.hover.delay": 275, | |
"editor.letterSpacing": 0.1, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"liveServer.settings.donotVerifyTags": true, | |
"prettier.jsxBracketSameLine": true, | |
"files.associations": { | |
"*.ejs": "html", | |
"*.css": "css" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.cursorStyle": "line", | |
"eslint.alwaysShowStatus": true, | |
"eslint.run": "onSave", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"files.exclude": { | |
"**/node_modules": true | |
}, | |
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${appName}", | |
"window.titleSeparator": " | ", | |
"prettier.singleQuote": true, | |
"prettier.arrowParens": "avoid", | |
"prettier.tabWidth": 2, | |
"prettier.printWidth": 100, | |
"editor.formatOnSave": true, | |
"explorer.autoReveal": false, | |
"explorer.confirmDragAndDrop": false, | |
"editor.fontFamily": "'Cascadia Code SemiLight', Consolas, 'Courier New', monospace", | |
"workbench.editor.decorations.badges": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.editor.wrapTabs": false, | |
"workbench.editor.decorations.colors": true, | |
"files.autoSave": "onFocusChange", | |
"workbench.iconTheme": "vscode-icons", | |
"editor.cursorBlinking": "expand", | |
"files.eol": "\r\n", | |
"git.autofetch": true, | |
"liveshare.presence": true, | |
"editor.codeLensFontFamily": "'Cascadia Code SemiLight', Consolas, 'Courier New', monospace", | |
"json.maxItemsComputed": 500000, | |
"html-css-class-completion.enableEmmetSupport": true, | |
"html-css-class-completion.CSSLanguages": ["css", "sass", "scss"], | |
"html-css-class-completion.JavaScriptLanguages": [ | |
"javascript", | |
"javascriptreact", | |
"typescriptreact" | |
], | |
"tailwindCSS.emmetCompletions": true, | |
"tailwindCSS.includeLanguages": { | |
"plaintext": "html", | |
"js": "javascript" | |
}, | |
"tailwindCSS.rootFontSize": 10, | |
"colorize.languages": [ | |
"javascript", | |
"json", | |
"css", | |
"sass", | |
"scss", | |
"less", | |
"postcss", | |
"sss", | |
"stylus", | |
"xml", | |
"svg" | |
], | |
"workbench.editor.enablePreview": false, | |
"terminal.external.windowsExec": "C:\\Program Files\\Git\\bin\\bash.exe --login", | |
"material-ui-snippets.showNotesOnStartup": false, | |
"material-ui-snippets.importPaths": "top level", | |
"colorize.exclude": [ | |
"**/.git", | |
"**/.svn", | |
"**/.hg", | |
"**/CVS", | |
"**/.DS_Store", | |
"**/.git", | |
"**/node_modules", | |
"**/bower_components", | |
"**/tmp", | |
"**/dist", | |
"**/tests" | |
], | |
"css.lint.unknownAtRules": "ignore", | |
"workbench.colorTheme": "One Dark Pro Darker", | |
"editor.unicodeHighlight.ambiguousCharacters": false, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": "active" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment