Why :LspStatus returns typescript-language-server: not running ?
Please show me how to run typescript-language-server in neovim.
$ vi helloworld.js
:PlugInstall
:LspInstallServer
:LspStatus
typescript-language-server: not running
I have read closed issue #547 and included these lines to init.vim file:-
let g:lsp_diagnostics_echo_cursor = 1
let g:lsp_settings = {
\ 'efm-langserver': {
\ 'disabled': v:false
\ },
\ }
autocmd BufWritePre *.js,*.jsx call execute('LspDocumentFormatSync --server=efm-langserver')
But the error still appears the same...
Why
:LspStatusreturnstypescript-language-server:not running ?Please show me how to run
typescript-language-serverin neovim.I have read closed issue #547 and included these lines to
init.vimfile:-But the error still appears the same...