| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | chore: remove deprecated modules (#682) | William Boman | 2022-05-10 | 12 | -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 Boman | 2022-04-21 | 11 | -2/+77 |
| | | |||||
| * | more async refactor (#587) | William Boman | 2022-04-11 | 2 | -20/+38 |
| | | |||||
| * | add async managers (#536) | William Boman | 2022-03-26 | 2 | -0/+2 |
| | | |||||
| * | Support libc detection (#527) | treatybreaker | 2022-03-06 | 1 | -2/+2 |
| | | |||||
| * | add ocamllsp (#498) | Harry Tran | 2022-02-22 | 1 | -0/+53 |
| | | | | Co-authored-by: William Boman <william@redwill.se> | ||||
| * | fix(powershell): set security protocol to TLS1.2 (#487) | William Boman | 2022-02-16 | 1 | -1/+4 |
| | | | | Fixes #480. | ||||
| * | add flux_lsp (#456) | William Boman | 2022-02-02 | 1 | -2/+9 |
| | | |||||
| * | also attempt WinRAR to extract archives on Windows (#455) | Brian Orwe | 2022-02-01 | 1 | -1/+6 |
| | | |||||
| * | add nickel_ls (#452) | William Boman | 2022-01-29 | 1 | -0/+17 |
| | | |||||
| * | add lelwel_ls (#450) | William Boman | 2022-01-27 | 1 | -1/+6 |
| | | |||||
| * | add beancount (#445) | William Boman | 2022-01-24 | 1 | -3/+5 |
| | | |||||
| * | add golangci_lint_ls (#441) | William Boman | 2022-01-23 | 1 | -7/+15 |
| | | |||||
| * | remove G111MODULE and GOPATH env vars | William Boman | 2022-01-21 | 1 | -2/+0 |
| | | |||||
| * | Change go installer from get to install (#438) | Simon Gate | 2022-01-21 | 1 | -14/+6 |
| | | |||||
| * | add server psalm (#426) | Jürgen Steitz | 2022-01-15 | 1 | -0/+43 |
| | | | | Co-authored-by: William Boman <william@redwill.se> | ||||
| * | add rnix (#408) | William Boman | 2022-01-10 | 1 | -0/+33 |
| | | |||||
| * | fetch: add User-Agent header (#409) | William Boman | 2022-01-09 | 1 | -3/+6 |
| | | |||||
| * | feat(ui): display outdated servers (#395) | William Boman | 2022-01-06 | 1 | -56/+23 |
| | | |||||
| * | fix(receipts): register receipt before pinning version number (#388) | William Boman | 2022-01-04 | 3 | -14/+15 |
| | | |||||
| * | write install receipts (#379) | William Boman | 2022-01-03 | 8 | -104/+116 |
| | | |||||
| * | leverage PATH for locating local executables (#283) | William Boman | 2022-01-02 | 6 | -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 Boman | 2022-01-02 | 2 | -37/+26 |
| | | |||||
| * | add taplo (#373) | William Boman | 2022-01-02 | 1 | -0/+30 |
| | | |||||
| * | fix: dont pass nil opts | William Boman | 2021-12-25 | 1 | -1/+1 |
| | | | | | | Fixes #359. Fixes #357. | ||||
| * | fix(ccls): better Mac support (#352) | William Boman | 2021-12-23 | 3 | -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 Boman | 2021-12-19 | 2 | -5/+75 |
| | | |||||
| * | fix: increase timeout for sync installs to 60 minutes | William Boman | 2021-12-10 | 1 | -1/+6 |
| | | | | | Also fix error message when it times out. | ||||
| * | initial healthcheck integration (#321) | William Boman | 2021-12-07 | 5 | -15/+16 |
| | | |||||
| * | fix(installers/npm): dont apply global-style for standalone npm install | William Boman | 2021-12-07 | 2 | -33/+39 |
| | | |||||
| * | add quick_lint_js (#313) | William Boman | 2021-12-06 | 1 | -1/+36 |
| | | |||||
| * | add ccls (#299) | William Boman | 2021-12-05 | 3 | -11/+60 |
| | | |||||
| * | fix(installers/shell): pass script via arg, when possible (#307) | William Boman | 2021-12-05 | 1 | -5/+4 |
| | | |||||
| * | fix(bicep): download the langserver via the vscode distribution (#286) | William Boman | 2021-11-30 | 1 | -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 Boman | 2021-11-29 | 1 | -10/+22 |
| | | |||||
| * | added explicit expand-archive command (#284) | boris-kuz | 2021-11-25 | 1 | -1/+3 |
| | | |||||
| * | fix(windows): unset PSMODULEPATH before invoking powershell scripts (#278) | William Boman | 2021-11-25 | 2 | -1/+4 |
| | | |||||
| * | installers/pip3: prioritize g:python3_host_prog if defined | Tyler Fox | 2021-11-11 | 1 | -1/+11 |
| | | | | Co-authored-by: William Boman <william@redwill.se> | ||||
| * | installers: remove deprecated zx module | William Boman | 2021-11-07 | 1 | -79/+0 |
| | | |||||
| * | installers/shell: remove deprecated remote_powershell | William Boman | 2021-11-07 | 1 | -7/+0 |
| | | |||||
| * | pip3: promote install_dir to server's root dir immediately (#230) | William Boman | 2021-10-31 | 3 | -3/+23 |
| | | |||||
| * | run installations in tmpdir (#199) | William Boman | 2021-10-30 | 9 | -55/+82 |
| | | | | Resolves #154. | ||||
| * | add public API to close installer window (#208) | William Boman | 2021-10-29 | 1 | -1/+1 |
| | | |||||
| * | add -NoProfile to powershell invocations (#202) | JSchrtke | 2021-10-27 | 2 | -1/+3 |
| | | | | Fixes #201. | ||||
| * | ui: register autocmds in an augroup (#198) | William Boman | 2021-10-26 | 1 | -1/+1 |
| | | | | This allows disabling this behavior, should one.wish to do so. | ||||
| * | mac's not fun | William Boman | 2021-10-25 | 1 | -1/+0 |
| | | |||||
| * | add proper emmylua annotations (#196) | William Boman | 2021-10-25 | 9 | -67/+207 |
| | | |||||
| * | installers/context: rename functions (#170) | William Boman | 2021-10-17 | 1 | -19/+21 |
| | | |||||
| * | add vala_ls (#167) | William Boman | 2021-10-17 | 1 | -19/+22 |
| | | |||||
| * | installers/pip3: add setting for adding extra install args (#151) | William Boman | 2021-10-17 | 2 | -6/+9 |
| | | |||||
