| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | write install receipts (#379) | William Boman | 2022-01-03 | 51 | -199/+522 | |
| | | ||||||
| * | health: add neovim version check | William Boman | 2022-01-03 | 1 | -0/+6 | |
| | | ||||||
| * | leverage PATH for locating local executables (#283) | William Boman | 2022-01-02 | 82 | -253/+206 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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(texlab): fix installing on windows | William Boman | 2022-01-02 | 1 | -2/+6 | |
| | | ||||||
| * | fix(taplo): use github release files instead (#377) | William Boman | 2022-01-02 | 3 | -40/+54 | |
| | | ||||||
| * | add taplo (#373) | William Boman | 2022-01-02 | 6 | -0/+51 | |
| | | ||||||
| * | health: add java check | William Boman | 2021-12-30 | 1 | -1/+2 | |
| | | ||||||
| * | add solc (#371) | William Boman | 2021-12-30 | 5 | -2/+45 | |
| | | | | Resolves #368. | |||||
| * | add zk (#345) | the continium | 2021-12-29 | 5 | -1/+65 | |
| | | ||||||
| * | feat(ui): display interactive server settings schema table (#363) | William Boman | 2021-12-29 | 24 | -5/+290 | |
| | | ||||||
| * | fix(arduino_language_server): install clangd, also add docs on how to work ↵ | William Boman | 2021-12-27 | 2 | -0/+99 | |
| | | | | | with FQBN (#364) | |||||
| * | run autogen_metadata.sh | William Boman | 2021-12-26 | 2 | -1/+2 | |
| | | ||||||
| * | feat(ui): sort servers alphabetically, also add language hints (#361) | William Boman | 2021-12-25 | 2 | -7/+66 | |
| | | ||||||
| * | fix(zls): add chmod +x to binary (#362) | William Boman | 2021-12-25 | 1 | -0/+1 | |
| | | | | The executable flag seems to have disappeared in 0.9.0. | |||||
| * | add some tests (#360) | William Boman | 2021-12-25 | 4 | -13/+17 | |
| | | ||||||
| * | fix: dont pass nil opts | William Boman | 2021-12-25 | 1 | -1/+1 | |
| | | | | | | Fixes #359. Fixes #357. | |||||
| * | feat(ui): add keybind to update all installed servers (#353) | William Boman | 2021-12-23 | 2 | -0/+9 | |
| | | ||||||
| * | fix(ccls): better Mac support (#352) | William Boman | 2021-12-23 | 4 | -85/+167 | |
| | | | | | This is a breaking change due to fundamental changes to the installer. Re-installation will unfortunately be required. | |||||
| * | feat: add grammarly (#349) | William Boman | 2021-12-23 | 4 | -1/+23 | |
| | | ||||||
| * | ansiblels: remove filetypes override | William Boman | 2021-12-21 | 1 | -1/+0 | |
| | | ||||||
| * | fix(zls): correct linux i386 archive name | William Boman | 2021-12-21 | 1 | -4/+7 | |
| | | ||||||
| * | fix(zls): install x86_64-macos on arm as well | William Boman | 2021-12-19 | 1 | -1/+1 | |
| | | | | | This seems to work just fine, perhaps thanks to Rosetta? | |||||
| * | fix(ccls): support more Linux dists (#347) | William Boman | 2021-12-19 | 3 | -32/+137 | |
| | | ||||||
| * | feat(health): relax some checks, also improve bourne shell version check (#344) | William Boman | 2021-12-19 | 1 | -32/+63 | |
| | | ||||||
| * | fix(health): ignore the patch number in capturing go version (#343) | Jiarong Deng | 2021-12-18 | 1 | -1/+1 | |
| | | ||||||
| * | fix(sumneko_lua): (breaking) support new archive structure (#341) | William Boman | 2021-12-17 | 1 | -13/+22 | |
| | | | | Fixes #339. | |||||
| * | add sourcekit for Swift (#336) | Jesse Claven | 2021-12-16 | 5 | -2/+28 | |
| | | | | Resolves #320. | |||||
| * | add cssmodules_ls (#333) | William Boman | 2021-12-14 | 5 | -4/+24 | |
| | | ||||||
| * | feat: allow server installation by just typing `:LspInstall` (#331) | William Boman | 2021-12-13 | 1 | -0/+23 | |
| | | | | | This will prompt the user which server associated with the currently opened buffer's &filetype to install. | |||||
| * | add solidity_ls language server (#296) | edag94 | 2021-12-12 | 5 | -2/+21 | |
| | | ||||||
| * | fix: zls-0.2 uses a different archive path (#330) | Ruben Slabbert | 2021-12-12 | 1 | -1/+1 | |
| | | | | Signed-off-by: Ruben Slabbert <rslabbert@fastmail.com> | |||||
| * | better healthchecks with min version check | William Boman | 2021-12-11 | 1 | -17/+77 | |
| | | ||||||
| * | stylua | William Boman | 2021-12-10 | 1 | -1/+1 | |
| | | ||||||
| * | fix: increase timeout for sync installs to 60 minutes | William Boman | 2021-12-10 | 2 | -10/+17 | |
| | | | | | Also fix error message when it times out. | |||||
| * | fix(angularls): fix --ngProbeLocation (#323) | William Boman | 2021-12-08 | 1 | -1/+7 | |
| | | ||||||
| * | add spectral (#295) | William Boman | 2021-12-08 | 5 | -2/+37 | |
| | | ||||||
| * | add :PylspInstall command for managing 3rd party pylsp plugins (#318) | Fymyte | 2021-12-08 | 2 | -0/+37 | |
| | | ||||||
| * | initial healthcheck integration (#321) | William Boman | 2021-12-07 | 7 | -17/+145 | |
| | | ||||||
| * | fix(installers/npm): dont apply global-style for standalone npm install | William Boman | 2021-12-07 | 2 | -33/+39 | |
| | | ||||||
| * | fix(quick_lint_js): use latest dist instead of collecting it via github API ↵ | William Boman | 2021-12-07 | 1 | -3/+4 | |
| | | | | | (#319) | |||||
| * | tag eslint with javascript & typescript | William Boman | 2021-12-06 | 2 | -3/+6 | |
| | | ||||||
| * | fix(quick_lint_js): account for the fact that the archive has different ↵ | William Boman | 2021-12-06 | 1 | -2/+6 | |
| | | | | | structures across platforms (#315) | |||||
| * | fix installing arduino_language_server on Windows | William Boman | 2021-12-06 | 1 | -1/+1 | |
| | | ||||||
| * | fix(quick_lint_js): use correct release files (#314) | William Boman | 2021-12-06 | 1 | -7/+34 | |
| | | ||||||
| * | add quick_lint_js (#313) | William Boman | 2021-12-06 | 6 | -3/+72 | |
| | | ||||||
| * | Add arduino-language-server support (#298) | Chad Condon | 2021-12-06 | 4 | -0/+90 | |
| | | ||||||
| * | feat: use vim.ui.select to prompt which server to install | William Boman | 2021-12-06 | 1 | -27/+29 | |
| | | ||||||
| * | rerun autogen | William Boman | 2021-12-05 | 1 | -1/+1 | |
| | | ||||||
| * | rome: update latest pinned version | William Boman | 2021-12-05 | 2 | -2/+2 | |
| | | ||||||
| * | graphql: remove filetypes override | William Boman | 2021-12-05 | 1 | -1/+0 | |
| | | ||||||
