Hacker News new | ask | show | jobs
by toupeira 2720 days ago
Which plugin are you using? Looking at https://langserver.org/#implementations-client there are at least four of them, and IIRC the neovim folks are also working on a native implementation.
1 comments

I'm using autozimu/LanguageClient-neovim [1]

From my .config/nvim/init.vim:

call plug#begin('~/.local/share/nvim/plugged') Plug 'autozimu/LanguageClient-neovim', { 'do': ':UpdateRemotePlugins' } call plug#end()

let g:LanguageClient_serverCommands = { \ 'javascript': ['node','/Users/jrousseau/javascript-typescript-langserver/lib/language-server-stdio.js'], \ }

" Automatically start language servers. let g:LanguageClient_autoStart = 1

[1] https://github.com/autozimu/LanguageClient-neovim