aboutsummaryrefslogtreecommitdiffstats
path: root/CUSTOM_SERVERS.md
Commit message (Collapse)AuthorAgeFilesLines
* docs: remove custom servers docsWilliam Boman2022-05-311-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.mdWilliam Boman2022-04-291-194/+1
|
* docs: fix configs require in custom server example (#488)Francesco Renzi2022-02-171-1/+1
|
* add golangci_lint_ls (#441)William Boman2022-01-231-2/+2
|
* Change go installer from get to install (#438)Simon Gate2022-01-211-2/+2
|
* leverage PATH for locating local executables (#283)William Boman2022-01-021-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_bashWilliam Boman2021-11-301-22/+0
| | | | Resolves #297.
* add Lua API to override default settings (#111)William Boman2021-09-301-0/+3
|
* don't assume bash location (#108)William Boman2021-09-291-2/+2
|
* rewrite some installers for broader cross-platform support (#85)William Boman2021-09-101-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 docsWilliam Boman2021-09-081-9/+40
|
* add direct integration with libuv instead of going through termopen, also ↵William Boman2021-09-071-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 Boman2021-08-221-1/+1
|
* CUSTOM_SERVERS.md: improve docsWilliam Boman2021-08-181-4/+4
|
* add new on_server_ready() API (#56)William Boman2021-08-181-4/+5
|
* CUSTOM_SERVERS.md: add missing type annotationWilliam Boman2021-08-171-1/+1
|
* add custom server capabilities (#55)William Boman2021-08-171-0/+206