Skip to content

Instantly share code, notes, and snippets.

@ChristopherDavenport
Created July 25, 2020 16:40
Show Gist options
  • Save ChristopherDavenport/e8c915abd1ddc3ac502e432c208a8077 to your computer and use it in GitHub Desktop.
Save ChristopherDavenport/e8c915abd1ddc3ac502e432c208a8077 to your computer and use it in GitHub Desktop.
Metals VsCode Improvement

Quick PSA on Metals with vscode

Since scala changes a lot of files in build and vscode watches those files. It actually has quite a delay. Adding this to settings will improve performance by an enormous degree. Especially on larger projects.

"files.exclude": {
        "**/.bloop": true,
        "**/.metals": true,
        "**/target": true
    },
    "files.watcherExclude": {
        "**/.bloop": true,
        "**/.metals": true,
        "**/target": true
    },
@gabro
Copy link

gabro commented Aug 3, 2020

Thanks for this! I've opened a PR at scalameta/metals-vscode#372

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment