diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix index f8e5fc9ad1fd..47795ac8954b 100644 --- a/pkgs/applications/editors/neovim/wrapper.nix +++ b/pkgs/applications/editors/neovim/wrapper.nix @@ -23,10 +23,10 @@ let # certain plugins need a custom configuration (available in passthru.initLua) # to work with nix. # if true, the wrapper automatically appends those snippets when necessary - , autoconfigure ? false + , autoconfigure ? true # append to PATH runtime deps of plugins - , autowrapRuntimeDeps ? false + , autowrapRuntimeDeps ? true # should contain all args but the binary. Can be either a string or list , wrapperArgs ? [] diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index f856b3aa2f38..0fac70eb1665 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -57,6 +57,7 @@ tmux, tup, typescript, + typescript-language-server, vim, which, xdg-utils, @@ -3298,6 +3299,9 @@ in nvim-lspconfig plenary-nvim ]; + runtimeDeps = [ + typescript-language-server + ]; }; nvzone-typr = super.nvzone-typr.overrideAttrs {