Skip to content

Instantly share code, notes, and snippets.

@justsml
Last active November 22, 2022 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justsml/be81a1e406ef35eb1bcdf4d23e0861ad to your computer and use it in GitHub Desktop.
Save justsml/be81a1e406ef35eb1bcdf4d23e0861ad to your computer and use it in GitHub Desktop.
VS Code Config
{
// 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": []
}
#!/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
// Place your key bindings in this file to override the defaults
[
{
"key": "alt+cmd+;",
"command": "workbench.files.action.collapseExplorerFolders"
}
]
{
"[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