diff --git a/neovim/configs/language-server.nix b/neovim/configs/language-server.nix index 41ea1e2..9142a45 100644 --- a/neovim/configs/language-server.nix +++ b/neovim/configs/language-server.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: let inherit (lib.nix2lua) call; in { @@ -27,13 +27,17 @@ let inherit (lib.nix2lua) call; in }; tsserver = rec { filetypes = [ "javascript" "javascriptreact" "typescript" "typescriptreact" "vue" ]; - init_options.plugins = [ - { - name = "@vue/typescript-plugin"; - location = "./node_modules/@vue/typescript-plugin"; - languages = filetypes; - } - ]; + cmd = "${pkgs.nodePackages.typescript-language-server}/bin/typescript-language-server --stdio"; + init_options = { + plugins = [ + { + name = "@vue/typescript-plugin"; + location = "./node_modules/@vue/typescript-plugin"; + languages = filetypes; + } + ]; + tsserver.fallbackPath = "${pkgs.nodePackages.typescript}/lib/node_modules/typescript/lib"; + }; }; eslint = { on_attach = config.fn.lspconfig-eslint-on-attach.lambda;