Last active
November 22, 2022 18:57
-
-
Save justsml/be81a1e406ef35eb1bcdf4d23e0861ad to your computer and use it in GitHub Desktop.
VS Code Config
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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | |
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | |
// List of extensions which should be recommended for users of this workspace. | |
"recommendations": [ | |
"streetsidesoftware.code-spell-checker", | |
"kisstkondoros.vscode-codemetrics", | |
"ms-azuretools.vscode-docker", | |
"dbaeumer.vscode-eslint", | |
"github.copilot", | |
"eamodio.gitlens", | |
"yzhang.markdown-all-in-one", | |
"davidanson.vscode-markdownlint", | |
"csstools.postcss", | |
"esbenp.prettier-vscode", | |
"timonwong.shellcheck", | |
"foxundermoon.shell-format" | |
], | |
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. | |
"unwantedRecommendations": [] | |
} |
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
#!/usr/bin/env sh | |
code --install-extension csstools.postcss | |
code --install-extension davidanson.vscode-markdownlint | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension eamodio.gitlens | |
code --install-extension esbenp.prettier-vscode | |
code --install-extension foxundermoon.shell-format | |
code --install-extension github.copilot | |
code --install-extension kisstkondoros.vscode-codemetrics | |
code --install-extension ms-azuretools.vscode-docker | |
code --install-extension streetsidesoftware.code-spell-checker | |
code --install-extension timonwong.shellcheck | |
code --install-extension yzhang.markdown-all-in-one |
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 key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "alt+cmd+;", | |
"command": "workbench.files.action.collapseExplorerFolders" | |
} | |
] |
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
{ | |
"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, | |
"[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, | |
"[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, | |
"editor.accessibilitySupport": "off", | |
"editor.bracketPairColorization.independentColorPoolPerBracketType": true, | |
"editor.fontFamily": "'MesloLGS NF', 'FiraCode Nerd Font Mono', 'Inconsolata Nerd Font Mono', 'Hack Nerd Font Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.guides.bracketPairs": true, | |
"editor.inlineSuggest.enabled": true, | |
"editor.tabSize": 2, | |
"editor.wordWrap": "wordWrapColumn", | |
"explorer.confirmDragAndDrop": false, | |
"files.autoSave": "onFocusChange", | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"github.copilot.enable": { "*": true, "yaml": false, "plaintext": true, "markdown": true }, | |
"javascript.preferences.importModuleSpecifier": "relative", | |
"markdown.extension.italic.indicator": "_", | |
"markdown.extension.tableFormatter.normalizeIndentation": true, | |
"markdown.extension.toc.levels": "2..3", | |
"terminal.integrated.env.osx": { "FIG_NEW_SESSION": "1" }, | |
"terminal.integrated.fontFamily": "'MesloLGS NF', 'FiraCode Nerd Font Mono', 'Inconsolata Nerd Font Mono', 'Hack Nerd Font Mono', Menlo, Monaco, 'Courier New', monospace", | |
"terminal.integrated.persistentSessionScrollback": 2500, | |
"terminal.integrated.scrollback": 100000, | |
"typescript.enablePromptUseWorkspaceTsdk": true, | |
"typescript.preferences.importModuleSpecifier": "relative", | |
"window.zoomLevel": -1, | |
"workbench.colorTheme": "Bearded Theme Arc" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment