pmizio / typescript-tools.nvim

⚡ TypeScript integration NeoVim deserves ⚡
MIT License
1.26k stars 36 forks source link

Tsserver is launched twice in a project #260

Closed victorkamoto closed 2 months ago

victorkamoto commented 2 months ago

I'm using LazyVim, and haven't added the typescript extra. I've only configured typescript-tools.nvim. The typescript-language-server is not installed with mason either. When I open a ts project and open my system monitor, there are two tsserver instances. What could be the problem?

igorlfs commented 2 months ago

See the "Configuration" section in the README. You can disable this behavior with

        settings = {
            separate_diagnostic_server = false,
        }
victorkamoto commented 2 months ago

Thank you