-
-
Save Murugan-sfdc/7dc28c3956f39d6acef6e0c43bca2f8c to your computer and use it in GitHub Desktop.
vscode settings.json
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
| { | |
| "auto-rename-tag.activationOnLanguage": [ | |
| "*" | |
| ], | |
| "css.validate": false, | |
| "diffEditor.renderSideBySide": false, | |
| "editor.insertSpaces": true, | |
| "editor.cursorStyle": "line", | |
| "editor.tabSize": 2, | |
| "editor.fontFamily": "FiraCode-Regular, Fantasque Sans Mono, IBMPlexMono, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 0, | |
| "editor.fontLigatures": true, | |
| "editor.minimap.renderCharacters": false, | |
| "editor.renderIndentGuides": false, | |
| "editor.scrollBeyondLastLine": false, | |
| "editor.snippetSuggestions": "top", | |
| "editor.quickSuggestions": { | |
| "other": true, | |
| "comments": false, | |
| "strings": false | |
| }, | |
| "editor.tabCompletion": true, | |
| "editor.wordWrap": "on", | |
| "editor.autoIndent": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.rulers": [ | |
| 80 | |
| ], | |
| "editor.parameterHints": false, | |
| "editor.minimap.showSlider": "always", | |
| "editor.minimap.maxColumn": 80, | |
| "editor.showFoldingControls": "always", | |
| "editor.foldingStrategy": "indentation", | |
| "editor.suggestSelection": "recentlyUsedByPrefix", | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": false | |
| }, | |
| "emmet.showSuggestionsAsSnippets": true, | |
| "emmet.showAbbreviationSuggestions": true, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "jsx-sublime-babel-tags": "javascriptreact" | |
| }, | |
| "explorer.sortOrder": "default", | |
| "extensions.autoUpdate": true, | |
| "files.autoSave": "afterDelay", | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/__MACOSX": true | |
| }, | |
| "files.trimTrailingWhitespace": true, | |
| "files.insertFinalNewline": true, | |
| "files.associations": { | |
| "*.js": "javascript", | |
| "*.mdx": "markdown", | |
| ".babelrc": "json5", | |
| "*.atml": "html" | |
| }, | |
| "git.autofetch": true, | |
| "gitlens.gitExplorer.enabled": false, | |
| "gitlens.explorers.avatars": false, | |
| "gitlens.resultsExplorer.files.compact": false, | |
| "gitlens.codeLens.scopes": [ | |
| "document", | |
| "containers", | |
| "blocks" | |
| ], | |
| "gitlens.keymap": "alternate", | |
| "gitlens.advanced.messages": { | |
| "suppressCommitHasNoPreviousCommitWarning": false, | |
| "suppressCommitNotFoundWarning": false, | |
| "suppressFileNotUnderSourceControlWarning": false, | |
| "suppressGitVersionWarning": false, | |
| "suppressLineUncommittedWarning": false, | |
| "suppressNoRepositoryWarning": false, | |
| "suppressResultsExplorerNotice": false, | |
| "suppressShowKeyBindingsNotice": true | |
| }, | |
| "html.suggest.angular1": false, | |
| "html.suggest.ionic": false, | |
| "javascript.implicitProjectConfig.checkJs": false, | |
| "npm.enableScriptExplorer": true, | |
| "php.suggest.basic": false, | |
| "prettier.eslintIntegration": true, | |
| "telemetry.enableTelemetry": false, | |
| "telemetry.enableCrashReporter": false, | |
| "terminal.external.osxExec": "iTerm.app", | |
| "terminal.integrated.fontSize": 14, | |
| "projectManager.sortList": "Recent", | |
| "search.smartCase": true, | |
| "scss.validate": false, | |
| "terminal.integrated.shell.osx": "/usr/local/bin/fish", | |
| "terminal.integrated.scrollback": 8000, | |
| "typescript.useCodeSnippetsOnMethodSuggest": true, | |
| "window.restoreWindows": "all", | |
| "window.restoreFullscreen": true, | |
| "window.zoomLevel": 0, | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.commandPalette.preserveInput": true, | |
| "workbench.editor.closeOnFileDelete": false, | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.fontAliasing": "antialiased", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.panel.defaultLocation": "bottom", | |
| "workbench.editor.tabSizing": "shrink", | |
| "workbench.sideBar.location": "right", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.tree.horizontalScrolling": true, | |
| "gitlens.historyExplorer.enabled": true, | |
| "eslint.packageManager": "yarn", | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "explorer.confirmDelete": false, | |
| "javascript.updateImportsOnFileMove.enabled": "never", | |
| "extensions.showRecommendationsOnlyOnDemand": true, | |
| "eslint.autoFixOnSave": true, | |
| "files.autoSaveDelay": 6000, | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnSave": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment