aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/installers
Commit message (Collapse)AuthorAgeFilesLines
* chore: remove deprecated modules (#682)William Boman2022-05-1012-1550/+0
| | | | - https://github.com/williamboman/nvim-lsp-installer/wiki/Async-infrastructure-changes-notice - https://github.com/williamboman/nvim-lsp-installer/discussions/636
* add deprecation notice to old installer modules (#618)William Boman2022-04-2111-2/+77
|
* more async refactor (#587)William Boman2022-04-112-20/+38
|
* add async managers (#536)William Boman2022-03-262-0/+2
|
* Support libc detection (#527)treatybreaker2022-03-061-2/+2
|
* add ocamllsp (#498)Harry Tran2022-02-221-0/+53
| | | Co-authored-by: William Boman <william@redwill.se>
* fix(powershell): set security protocol to TLS1.2 (#487)William Boman2022-02-161-1/+4
| | | Fixes #480.
* add flux_lsp (#456)William Boman2022-02-021-2/+9
|
* also attempt WinRAR to extract archives on Windows (#455)Brian Orwe2022-02-011-1/+6
|
* add nickel_ls (#452)William Boman2022-01-291-0/+17
|
* add lelwel_ls (#450)William Boman2022-01-271-1/+6
|
* add beancount (#445)William Boman2022-01-241-3/+5
|
* add golangci_lint_ls (#441)William Boman2022-01-231-7/+15
|
* remove G111MODULE and GOPATH env varsWilliam Boman2022-01-211-2/+0
|
* Change go installer from get to install (#438)Simon Gate2022-01-211-14/+6
|
* add server psalm (#426)Jürgen Steitz2022-01-151-0/+43
| | | Co-authored-by: William Boman <william@redwill.se>
* add rnix (#408)William Boman2022-01-101-0/+33
|
* fetch: add User-Agent header (#409)William Boman2022-01-091-3/+6
|
* feat(ui): display outdated servers (#395)William Boman2022-01-061-56/+23
|
* fix(receipts): register receipt before pinning version number (#388)William Boman2022-01-043-14/+15
|
* write install receipts (#379)William Boman2022-01-038-104/+116
|
* leverage PATH for locating local executables (#283)William Boman2022-01-026-43/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. This is a breaking change for the following servers, which will have to be reinstalled: - ltex - clangd 2. This is a breaking change for users who reach into the default options (for example via server:get_default_options()) to access the `cmd` property. nvim-lsp-installer no longer provides the `cmd` (except in a few instances), but instead provides an amended PATH which allows neovim's LSP client to locate the locally installed executable. To access the `cmd`, simply access it via lspconfig instead, for example like so: local default_config = require("lspconfig.server_configurations.rust_analyzer").default_config print("I can now access the cmd governed by lspconfig:", default_config.cmd) 3. This is a breaking change for 3rd party use cases that makes use of the `executable()` APIs (e.g., `npm.executable(root_dir, "tsserver")`). The recommended usage is to instead to use the canonical name of the command ("tsserver"), while providing an amended PATH, for example: local npm = require("nvim-lsp-installer.installers.npm") local server = server.Server:new { ..., root_dir = root_dir, installer = npm.packages { "tsserver" }, default_options = { cmd = { "tsserver" }, cmd_env = npm.env(root_dir), } }
* fix(taplo): use github release files instead (#377)William Boman2022-01-022-37/+26
|
* add taplo (#373)William Boman2022-01-021-0/+30
|
* fix: dont pass nil optsWilliam Boman2021-12-251-1/+1
| | | | | Fixes #359. Fixes #357.
* fix(ccls): better Mac support (#352)William Boman2021-12-233-27/+62
| | | | This is a breaking change due to fundamental changes to the installer. Re-installation will unfortunately be required.
* fix(ccls): support more Linux dists (#347)William Boman2021-12-192-5/+75
|
* fix: increase timeout for sync installs to 60 minutesWilliam Boman2021-12-101-1/+6
| | | | Also fix error message when it times out.
* initial healthcheck integration (#321)William Boman2021-12-075-15/+16
|
* fix(installers/npm): dont apply global-style for standalone npm installWilliam Boman2021-12-072-33/+39
|
* add quick_lint_js (#313)William Boman2021-12-061-1/+36
|
* add ccls (#299)William Boman2021-12-053-11/+60
|
* fix(installers/shell): pass script via arg, when possible (#307)William Boman2021-12-051-5/+4
|
* fix(bicep): download the langserver via the vscode distribution (#286)William Boman2021-11-301-1/+2
| | | | This is done to avoid issues with unzipping the bicep-langserver.zip on POSIX systems (see https://github.com/Azure/bicep/issues/3704).
* installers/npm: use global style (#289)William Boman2021-11-291-10/+22
|
* added explicit expand-archive command (#284)boris-kuz2021-11-251-1/+3
|
* fix(windows): unset PSMODULEPATH before invoking powershell scripts (#278)William Boman2021-11-252-1/+4
|
* installers/pip3: prioritize g:python3_host_prog if definedTyler Fox2021-11-111-1/+11
| | | Co-authored-by: William Boman <william@redwill.se>
* installers: remove deprecated zx moduleWilliam Boman2021-11-071-79/+0
|
* installers/shell: remove deprecated remote_powershellWilliam Boman2021-11-071-7/+0
|
* pip3: promote install_dir to server's root dir immediately (#230)William Boman2021-10-313-3/+23
|
* run installations in tmpdir (#199)William Boman2021-10-309-55/+82
| | | Resolves #154.
* add public API to close installer window (#208)William Boman2021-10-291-1/+1
|
* add -NoProfile to powershell invocations (#202)JSchrtke2021-10-272-1/+3
| | | Fixes #201.
* ui: register autocmds in an augroup (#198)William Boman2021-10-261-1/+1
| | | This allows disabling this behavior, should one.wish to do so.
* mac's not funWilliam Boman2021-10-251-1/+0
|
* add proper emmylua annotations (#196)William Boman2021-10-259-67/+207
|
* installers/context: rename functions (#170)William Boman2021-10-171-19/+21
|
* add vala_ls (#167)William Boman2021-10-171-19/+22
|
* installers/pip3: add setting for adding extra install args (#151)William Boman2021-10-172-6/+9
|