Skip to content

Instantly share code, notes, and snippets.

@huxulm
Last active October 22, 2024 02:56
Show Gist options
  • Save huxulm/50804eb4d62597b24cde3c2577d7ca10 to your computer and use it in GitHub Desktop.
Save huxulm/50804eb4d62597b24cde3c2577d7ca10 to your computer and use it in GitHub Desktop.
my vs code config

VS Code Settings for web development

{
    "window.zoomLevel": 3,
    "window.menuBarVisibility": "toggle",
    "window.titleBarStyle": "custom",

    "terminal.integrated.inheritEnv": true,

    "git.enableSmartCommit": true,
    "git.confirmSync": false,

    "files.autoSave": "afterDelay",

    // editor
    "editor.fontLigatures": true,
    "editor.fontSize": 18,
    "editor.mouseWheelZoom": false,
    "editor.codeActionsOnSave": {
        "source.fixAll.ts": "always",
        "source.sortImports": "always"
    },

    "explorer.fileNesting.enabled": true,
    "explorer.fileNesting.expand": true,

    "workbench.iconTheme": "material-icon-theme",
    "workbench.sideBar.location": "left",
    "workbench.colorTheme": "One Dark Pro",
    "workbench.activityBar.location": "top",

    "extensions.ignoreRecommendations": true,
    "extensions.autoCheckUpdates": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment