| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | docs: remove custom servers docs | William Boman | 2022-05-31 | 1 | -6/+0 |
| | | | | | | | The ability to register custom servers still exist, it's just not documented anymore. This will be reintroduced in some shape or form in the future. | ||||
| * | Update CUSTOM_SERVERS.md | William Boman | 2022-04-29 | 1 | -194/+1 |
| | | |||||
| * | docs: fix configs require in custom server example (#488) | Francesco Renzi | 2022-02-17 | 1 | -1/+1 |
| | | |||||
| * | add golangci_lint_ls (#441) | William Boman | 2022-01-23 | 1 | -2/+2 |
| | | |||||
| * | Change go installer from get to install (#438) | Simon Gate | 2022-01-21 | 1 | -2/+2 |
| | | |||||
| * | leverage PATH for locating local executables (#283) | William Boman | 2022-01-02 | 1 | -15/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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), } } | ||||
| * | CUSTOM_SERVERS: remove shell.remote_bash | William Boman | 2021-11-30 | 1 | -22/+0 |
| | | | | | Resolves #297. | ||||
| * | add Lua API to override default settings (#111) | William Boman | 2021-09-30 | 1 | -0/+3 |
| | | |||||
| * | don't assume bash location (#108) | William Boman | 2021-09-29 | 1 | -2/+2 |
| | | |||||
| * | rewrite some installers for broader cross-platform support (#85) | William Boman | 2021-09-10 | 1 | -20/+12 |
| | | | | | | | | | | | - Remove all usage of zx in favour of native Lua (via libuv) - Introduce new set of `std` installers The following servers will have to be reinstalled due to this change: 1. clangd 2. solargraph 3. sumneko_lua 4. tailwindcss | ||||
| * | CUSTOM_SERVERS.md: update docs | William Boman | 2021-09-08 | 1 | -9/+40 |
| | | |||||
| * | add direct integration with libuv instead of going through termopen, also ↵ | William Boman | 2021-09-07 | 1 | -11/+14 |
| | | | | | | | | | | implement a UI (#79) * add direct integration with libuv instead of going through termopen, also implement a UI * alleged free perf boosts yo that's free cycles | ||||
| * | replace all usage of curl(1) with wget(1) | William Boman | 2021-08-22 | 1 | -1/+1 |
| | | |||||
| * | CUSTOM_SERVERS.md: improve docs | William Boman | 2021-08-18 | 1 | -4/+4 |
| | | |||||
| * | add new on_server_ready() API (#56) | William Boman | 2021-08-18 | 1 | -4/+5 |
| | | |||||
| * | CUSTOM_SERVERS.md: add missing type annotation | William Boman | 2021-08-17 | 1 | -1/+1 |
| | | |||||
| * | add custom server capabilities (#55) | William Boman | 2021-08-17 | 1 | -0/+206 |
