Last active
May 11, 2022 02:04
-
-
Save cheshirecode/bd3735184e1663dc3c1caf882e866805 to your computer and use it in GitHub Desktop.
VS code setup
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
| alefragnani.project-manager-12.5.0 | |
| arturock.gitstash-5.1.0 | |
| bradlc.vscode-tailwindcss-0.8.2 | |
| christian-kohler.path-intellisense-2.8.0 | |
| clemenspeters.format-json-1.0.2 | |
| codezombiech.gitignore-0.7.0 | |
| cssho.vscode-svgviewer-2.0.0 | |
| csstools.postcss-1.0.9 | |
| dbaeumer.vscode-eslint-2.2.2 | |
| dotjoshjohnson.xml-2.5.1 | |
| eamodio.gitlens-12.0.6 | |
| ericadamski.carbon-now-sh-1.2.0 | |
| esbenp.prettier-vscode-2.2.1 | |
| esbenp.prettier-vscode-9.5.0 | |
| foxundermoon.shell-format-7.2.2 | |
| ghmcadams.lintlens-3.0.3 | |
| golang.go-0.32.0 | |
| huizhou.githd-2.2.4 | |
| jasonnutter.search-node-modules-1.3.0 | |
| jock.svg-1.4.17 | |
| kamikillerto.vscode-colorize-0.11.1 | |
| khaeransori.json2csv-0.0.1 | |
| mgmcdermott.vscode-language-babel-0.0.36 | |
| mikestead.dotenv-1.0.1 | |
| ms-azuretools.vscode-docker-1.22.0 | |
| ms-python.python-2022.4.1 | |
| ms-vscode-remote.remote-ssh-0.76.1 | |
| ms-vscode-remote.remote-ssh-edit-0.78.0 | |
| ms-vscode.sublime-keybindings-3.0.3 | |
| ms-vscode.sublime-keybindings-4.0.10 | |
| oliversturm.fix-json-0.1.2 | |
| redhat.vscode-yaml-1.6.0 | |
| rlivings39.fzf-quick-open-0.4.7 | |
| simsim0709.over-night-owl-0.1.1 | |
| styled-components.vscode-styled-components-1.7.4 | |
| stylelint.vscode-stylelint-1.2.2 | |
| timonwong.shellcheck-0.19.2 | |
| vscode-icons-team.vscode-icons-11.11.0 | |
| waderyan.babelrc-1.0.0 | |
| ziyasal.vscode-open-in-github-1.3.6 |
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
| { | |
| "gitlens.advanced.messages": { | |
| "suppressCommitHasNoPreviousCommitWarning": false, | |
| "suppressCommitNotFoundWarning": false, | |
| "suppressFileNotUnderSourceControlWarning": false, | |
| "suppressGitVersionWarning": false, | |
| "suppressLineUncommittedWarning": false, | |
| "suppressNoRepositoryWarning": false | |
| }, | |
| "sublimeTextKeymap.promptV3Features": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 12, | |
| "editor.fontWeight": "100", | |
| "editor.fontFamily": " 'Consolas ligaturized v2', 'Fira Code', Consolas", | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "terminal.integrated.fontFamily": "Ubuntu mono derivative Powerline, Consolas, monospace", | |
| "gitlens.keymap": "alternate", | |
| "editor.tabSize": 2, | |
| "editor.rulers": [ | |
| 80, | |
| 100, | |
| 120 | |
| ], | |
| "editor.wordWrapColumn": 800, | |
| "prettier.eslintIntegration": true, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnSaveMode": "modifications", | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| "typescript", | |
| "typescriptreact" | |
| ], | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.guides.bracketPairs": "active", | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": true, | |
| "source.fixAll": true | |
| }, | |
| "eslint.packageManager": "yarn", | |
| "eslint.workingDirectories": [ | |
| { | |
| "mode": "auto" | |
| } | |
| ], | |
| "vscodeGoogleTranslate.preferredLanguage": "English", | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "git.autofetch": true, | |
| "search.useGlobalIgnoreFiles": true, | |
| "search.exclude": { | |
| "**/storybook-static": true, | |
| "**/coverage": true, | |
| "**/.cache/": true, | |
| "**/es": true, | |
| "**/lib": true, | |
| "**/.umi/": true, | |
| "**/build": true, | |
| "**/dist": true, | |
| "**/__snapshots__": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/**": true, | |
| "**/tmp/**": true, | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/dist/**": true, | |
| "**/log/**": true, | |
| "**/logs/**": true, | |
| "**/.fdk/**": true, | |
| "**/lib/": true, | |
| "**/es/": true | |
| }, | |
| "files.exclude": { | |
| "**/._*": true, | |
| "**/node_modules/": true, | |
| "**/.cache/": true, | |
| "**/coverage/": true, | |
| "**/lib/": true, | |
| "**/es/": true, | |
| "**/.umi/": true, | |
| "**/dist": true, | |
| "**/__snapshots__/": true | |
| }, | |
| "search.followSymlinks": true, | |
| "problems.decorations.enabled": false, | |
| "workbench.editor.enablePreview": false, | |
| "workbench.editor.enablePreviewFromQuickOpen": false, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "gitlens.views.remotes.branches.layout": "list", | |
| "workbench.fontAliasing": "auto", | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "json.maxItemsComputed": 150000, | |
| "editor.maxTokenizationLineLength": 15000, | |
| "typescript.implementationsCodeLens.enabled": true, | |
| "workbench.editorAssociations": { | |
| "*.ipynb": "jupyter.notebook.ipynb", | |
| "git-rebase-todo": "gitlens.rebase" | |
| }, | |
| "yaml.schemas": { | |
| "file:///toc.schema.json": "/toc\\.yml/i" | |
| }, | |
| "terminal.external.osxExec": "iTerm.app`", | |
| "terminal.integrated.localEchoLatencyThreshold": 0, | |
| "yaml.maxItemsComputed": 20000, | |
| "editor.suggest.showStatusBar": true, | |
| "debug.javascript.debugByLinkOptions": "off", | |
| "typescript.tsserver.log": "off", | |
| "redhat.telemetry.enabled": false, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "terminal.integrated.env.osx": { | |
| "DISABLE_UPDATE_PROMPT": "true" | |
| }, | |
| "terminal.integrated.env.windows": { | |
| "MSYSTEM": "MINGW64", | |
| "CHERE_INVOKING": "1" | |
| }, | |
| "terminal.integrated.profiles.windows": { | |
| "PowerShell": { | |
| "source": "PowerShell", | |
| "icon": "terminal-powershell" | |
| }, | |
| "Command Prompt": { | |
| "path": [ | |
| "${env:windir}\\Sysnative\\cmd.exe", | |
| "${env:windir}\\System32\\cmd.exe" | |
| ], | |
| "icon": "terminal-cmd" | |
| }, | |
| "GitBash": { | |
| "path": [ | |
| "C:\\apps\\Git\\bin\\bash.exe" | |
| ], | |
| "icon": "terminal-bash" | |
| } | |
| }, | |
| "terminal.integrated.defaultProfile.windows": "GitBash", | |
| "terminal.integrated.rendererType": "auto", | |
| "window.zoomLevel": -1, | |
| "terminal.integrated.defaultProfile.osx": "zsh", | |
| "workbench.iconTheme": "vscode-icons", | |
| "cSpell.enabled": false, | |
| "extensions.autoUpdate": "onlyEnabledExtensions", | |
| "workbench.enableExperiments": false, | |
| "workbench.settings.enableNaturalLanguageSearch": false, | |
| "telemetry.telemetryLevel": "off", | |
| "extensions.closeExtensionDetailsOnViewChange": true, | |
| "remoteHub.commitDirectlyWarning": "off", | |
| "[yaml]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "debug.console.closeOnEnd": true, | |
| "prettier.requireConfig": true, | |
| "stylelint.validate": [ | |
| "css", | |
| "less", | |
| "postcss", | |
| "scss", | |
| "typescript", | |
| "typescriptreact" | |
| ], | |
| "workbench.colorTheme": "Over Night Owl", | |
| "terminal.external.windowsExec": "", | |
| "workbench.startupEditor": "none", | |
| "typescript.validate.enable": true, | |
| "vsicons.dontShowNewVersionMessage": true, | |
| "editor.unicodeHighlight.allowedLocales": { | |
| "zh-hans": true | |
| }, | |
| "sync.quietSync": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment