u/Code-Sandwich

Zed is extremely choppy for me and I'm looking for help finding a solution. Here's a short video showing what it looks like, with the overlay showing the key presses. The fans spin up and the video recorder seems to be lagging when typing. I'm using Fedora 43 KDE Wayland on AMD 8845HS with Radeon 780M, 64GB RAM. No other text editor or app seems to be slowing down. The file where I recorded it is about 100 lines long and it's inside a tiny Deno project, that's the only source code file there. Here's my .zed/settings.json for this project:

{
  "lsp": {
    "deno": {
      "settings": {
        "deno": {
          "enable": true
        }
      }
    },
    "json-language-server": {
      "settings": {
        "json": {
          "schemas": [
            {
              "fileMatch": [
                "deno.json",
                "deno.jsonc"
              ],
              "url": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json"
            },
            {
              "fileMatch": [
                "package.json"
              ],
              "url": "https://www.schemastore.org/package"
            }
          ]
        }
      }
    }
  },
  "languages": {
    "JavaScript": {
      "language_servers": [
        "deno",
        "!typescript-language-server",
        "!vtsls",
        "!eslint"
      ]
    },
    "TypeScript": {
      "language_servers": [
        "deno",
        "!typescript-language-server",
        "!vtsls",
        "!eslint"
      ]
    },
    "TSX": {
      "language_servers": [
        "deno",
        "!typescript-language-server",
        "!vtsls",
        "!eslint"
      ]
    }
  }
}
u/Code-Sandwich — 15 days ago