aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers
Commit message (Collapse)AuthorAgeFilesLines
* mason.nvimWilliam Boman2022-07-07134-4022/+0
|
* feat: add svlangserver (#762)William Boman2022-06-082-0/+16
| | | Closes #747.
* feat: add marksman (#760)William Boman2022-06-072-0/+35
| | | Closes #759.
* feat: add visualforce_ls (#748)William Boman2022-06-063-1/+51
|
* feat: add apex_ls (#746)William Boman2022-06-032-0/+45
| | | Closes #701.
* added wgsl_analyzer server (#719)Dmitry Kudryavtsev2022-06-012-0/+20
|
* refactor(grammarly): use new official package (#720)William Boman2022-06-011-1/+1
|
* fix(julials): improve environment detection and set JULIA_LOAD_PATH (#740)William Boman2022-06-012-20/+59
|
* refactor: specify commands independently, not via lspconfig (#737)William Boman2022-05-304-76/+89
| | | | | | | | | | This is not a desirable solution, but it's better than as-is. There's a couple of reasons for this: 1) lspconfig only enables these commands upon successful attachment of servers, which doesn't really fit their use case. 2) We gain direct access to new Lua APIs for defining user commands, allowing us to leverage Lua callbacks and functions instead of intermediary global variables.
* feat(luarocks): use luarocks.bat executable if it's available (#731)William Boman2022-05-291-1/+1
| | | Closes #726.
* feat(ltex): use platform independent dist if java is installed (#730)William Boman2022-05-281-21/+49
| | | Closes #717.
* Revert "refactor(solang): don't download llvm (#729)"William Boman2022-05-281-16/+48
| | | | | | | This reverts commit e65ef77e6cc12c68b28b5fe65758e6d09d64b96d. This is reverted because solang actually requires a patched version of llvm.
* refactor(solang): don't download llvm (#729)William Boman2022-05-281-48/+16
| | | This is now assumed to be installed on the system instead.
* refactor: use new github.download_release_file function (#728)William Boman2022-05-284-19/+13
|
* feat: add teal_ls (#724)William Boman2022-05-272-0/+16
| | | Closes #723.
* fix(erlangls): follow git tags (#708)William Boman2022-05-192-48/+20
| | | Closes #683.
* fix(omnisharp): remove invalid equality checkWilliam Boman2022-05-171-1/+1
|
* fix(omnisharp): only use Mono runtime if configured by user (#705)William Boman2022-05-172-5/+23
|
* add mono version of omnisharp (#688)Sassan Haradji2022-05-171-31/+42
|
* chore(functional): restructure and extend functional modules (#703)William Boman2022-05-173-34/+22
|
* fix(github): allow looking for prereleases (#699)William Boman2022-05-131-1/+1
|
* Add VLS (for vlang) (#629)oscarbailey-tc2022-05-132-0/+45
| | | Co-authored-by: William Boman <william@redwill.se>
* feat(github): add `include_prerelease` option to `fetch_latest_release`William Boman2022-05-131-1/+0
|
* Updates Fortran Language Server (#693)gnikit2022-05-131-2/+2
| | | switches to fortls from fortran-language-server
* chore: further decouple module structure (#685)William Boman2022-05-1158-192/+191
|
* chore!: remove zeta_noteWilliam Boman2022-05-112-36/+0
| | | | This project is now archived and no longer maintained. GitHub releases seem to have been removed, either inadvertently or not.
* chore!: remove spectralWilliam Boman2022-05-112-29/+0
| | | | | | | This server's installation method is too unstable to currently support. It's also deprecated [1]. [1] https://github.com/stoplightio/vscode-spectral/issues/130
* chore: remove deprecated modules (#682)William Boman2022-05-10115-115/+0
| | | | - https://github.com/williamboman/nvim-lsp-installer/wiki/Async-infrastructure-changes-notice - https://github.com/williamboman/nvim-lsp-installer/discussions/636
* Added the Astro Language Server (#677)Anish De2022-05-062-0/+17
|
* feat(hls): install via ghcup (#667)William Boman2022-05-051-38/+3
|
* fix(vls): fix meson -Dprefix path (#668)William Boman2022-05-041-1/+2
| | | Closes #666.
* Add robotframework_ls (#655)Zoe Roux2022-05-012-0/+17
|
* fix(hls): download archive from downloads.haskell.org (#651)William Boman2022-05-011-14/+56
|
* add hoon_ls (#570)William Boman2022-05-012-0/+17
|
* fix!(beancount-language-server):update beancount install source (#649)hateonion2022-05-011-32/+3
|
* fix middleware_spec testsWilliam Boman2022-04-291-0/+1
|
* fix!(arduino_language_server): dont install arduino-cli and clangd (#640)William Boman2022-04-292-139/+34
| | | This is now expected to be installed on the system instead.
* docs: more deprecations and update some outdated docsWilliam Boman2022-04-292-53/+5
|
* feat: integrate with lspconfig's on_setup hook (#631)William Boman2022-04-271-1/+10
| | | | | | | | | | | | | | | | | | | | * feat: integrate with lspconfig's on_setup hook * fix!: don't use aliased installation directories if new .setup() fn is used This makes it so servers are always installed in a directory name that corresponds with the server name. The reason aliased installation directories is supported is lost on me, but it's legacy and complicates things unnecessarily. This is a breaking change for users who previously were using the `.on_server_ready()` hook, and now transitioned to setting up servers directly via lspconfig. These users will need to reinstall the server. * fix: block usage of the deprecated server:setup() method if new setup method is used * fix: allow passing no arg to setup() * docs: ok final.v3 readme
* fix(terraformls): use `root-dir` instead of `root-dir/terraform-ls` as cmd ↵mandlm2022-04-261-2/+1
| | | | path (#630)
* fix(ccls): pcall removal of llvm (#628)William Boman2022-04-251-16/+14
|
* docs: remove old tsserver READMEWilliam Boman2022-04-251-19/+0
|
* chore: refactor remaining installers to async impl (#616)William Boman2022-04-2149-1311/+1209
|
* fix(r_language_server): remove unnecessary fullReinstall arg, and force ↵William Boman2022-04-191-2/+5
| | | | remotes install (#613)
* Keep user library paths when starting R language server (#611)Hongyuan Jia2022-04-191-1/+1
|
* rust_analyzer: use new rust-lang/rust-analyzer repoWilliam Boman2022-04-141-1/+1
|
* add clarity_lsp (#594)William Boman2022-04-122-0/+39
| | | Closes #583.
* more async refactor (#587)William Boman2022-04-1118-148/+100
|
* fix(verible): use correct unpacked directory name on Windows (#589)William Boman2022-04-111-1/+4
|
* make install context available via coroutine context (#586)William Boman2022-04-115-39/+28
|