| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | mason.nvim | William Boman | 2022-07-07 | 1 | -487/+0 |
| | | |||||
| * | chore: update some logging (#761) | William Boman | 2022-06-08 | 1 | -1/+20 |
| | | | | | | * chore: update some logging * docs: add section about known errors | ||||
| * | docs: introduce separate requirements section (#758) | William Boman | 2022-06-07 | 1 | -12/+31 |
| | | |||||
| * | docs: remove nvim-lsp-installer.servers helptag (#755) | William Boman | 2022-06-06 | 1 | -3/+0 |
| | | | | | All interactions from userland should preferably go through require("nvim-lsp-installer"). | ||||
| * | feat(ui): add setting to customize window border (#754) | William Boman | 2022-06-06 | 1 | -0/+3 |
| | | | | Closes #752. | ||||
| * | docs: update plugin intro | William Boman | 2022-06-01 | 1 | -14/+10 |
| | | |||||
| * | docs: remove custom servers docs | William Boman | 2022-05-31 | 1 | -3/+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. | ||||
| * | feat: add teal_ls (#724) | William Boman | 2022-05-27 | 1 | -0/+1 |
| | | | | Closes #723. | ||||
| * | feat: add setting to disable automatic version check when opening UI window ↵ | William Boman | 2022-05-23 | 1 | -0/+2 |
| | | | | | (#716) | ||||
| * | feat(github): add setting to customize asset download url (#711) | William Boman | 2022-05-21 | 1 | -27/+53 |
| | | | | Closes #678. | ||||
| * | docs: add comments mentioning ensure_installed has no relation with ↵ | William Boman | 2022-05-12 | 1 | -0/+5 |
| | | | | | | | | | | | automatic_installation ensure_installed is used as a hard-coded list of servers to always install, no matter if they're setup or not. automatic_installation is used to automatically detect which servers needs to be installed, based on which servers are setup via lspconfig. | ||||
| * | feat(hls): install via ghcup (#667) | William Boman | 2022-05-05 | 1 | -0/+1 |
| | | |||||
| * | fix(docs): don't use helptags syntax for deprecation notices | William Boman | 2022-05-02 | 1 | -6/+16 |
| | | | | | | Fixes #658. Closes #660. | ||||
| * | chore: bump minimum neovim version to 0.7.0 (#656) | William Boman | 2022-05-02 | 1 | -2/+2 |
| | | |||||
| * | feat: allow excluding servers from automatic installation (#643) | William Boman | 2022-04-30 | 1 | -2/+7 |
| | | |||||
| * | feat: add 'automatic_installation' feature toggle to setup options (#638) | William Boman | 2022-04-29 | 1 | -1/+5 |
| | | |||||
| * | docs: more deprecations and update some outdated docs | William Boman | 2022-04-29 | 1 | -3/+3 |
| | | |||||
| * | feat: add ensure_installed to setup table (#637) | William Boman | 2022-04-28 | 1 | -0/+2 |
| | | |||||
| * | docs: remove Rust Wiki link | William Boman | 2022-04-28 | 1 | -0/+1 |
| | | | | | With the new setup structure, this is no longer relevant. | ||||
| * | feat: integrate with lspconfig's on_setup hook (#631) | William Boman | 2022-04-27 | 1 | -46/+43 |
| | | | | | | | | | | | | | | | | | | | | | * feat: integrate with lspconfig's on_setup hook * fix!: don't use aliased installation directories if new .setup() fn is used This makes it so servers are always installed in a directory name that corresponds with the server name. The reason aliased installation directories is supported is lost on me, but it's legacy and complicates things unnecessarily. This is a breaking change for users who previously were using the `.on_server_ready()` hook, and now transitioned to setting up servers directly via lspconfig. These users will need to reinstall the server. * fix: block usage of the deprecated server:setup() method if new setup method is used * fix: allow passing no arg to setup() * docs: ok final.v3 readme | ||||
| * | add cargo to healthcheck | William Boman | 2022-04-18 | 1 | -0/+1 |
| | | |||||
| * | docs: add missing footnote to Usage section | William Boman | 2022-03-14 | 1 | -1/+3 |
| | | |||||
| * | doc: change wording in intro | William Boman | 2022-02-14 | 1 | -4/+2 |
| | | |||||
| * | docs: remove "advanced" example snippet | William Boman | 2022-02-12 | 1 | -30/+0 |
| | | | | | | | | There wasn't much thought put into this snippet, it was just added as an example of what one could do. The snippet happens to demonstrate how to automatically install servers - this is however already documented (in a different fashion) in the Wiki. | ||||
| * | doc: slight improvements | William Boman | 2022-02-06 | 1 | -48/+53 |
| | | |||||
| * | update README | William Boman | 2022-01-23 | 1 | -0/+5 |
| | | |||||
| * | leverage PATH for locating local executables (#283) | William Boman | 2022-01-02 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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), } } | ||||
| * | feat(ui): add keybind to update all installed servers (#353) | William Boman | 2021-12-23 | 1 | -0/+2 |
| | | |||||
| * | feat: allow server installation by just typing `:LspInstall` (#331) | William Boman | 2021-12-13 | 1 | -2/+13 |
| | | | | | This will prompt the user which server associated with the currently opened buffer's &filetype to install. | ||||
| * | docs: clarify how servers are installed and the recommended setup (#306) | William Boman | 2021-12-04 | 1 | -0/+16 |
| | | |||||
| * | server: add {version} param to server:install() | William Boman | 2021-11-17 | 1 | -1/+5 |
| | | |||||
| * | doc: update nvim-lspconfig links | William Boman | 2021-11-11 | 1 | -3/+3 |
| | | |||||
| * | docs: wrap table arg with parantheses to avoid ambiguous syntax | William Boman | 2021-11-08 | 1 | -3/+3 |
| | | |||||
| * | fix: add server setup example (#192) | kylo252 | 2021-11-03 | 1 | -7/+22 |
| | | | | Co-authored-by: William Boman <william@redwill.se> | ||||
| * | server: add attach_buffers() method (#220) | William Boman | 2021-10-31 | 1 | -5/+26 |
| | | |||||
| * | server: add :on_ready() method (#214) | William Boman | 2021-10-30 | 1 | -0/+8 |
| | | |||||
| * | doc: add some docs | William Boman | 2021-10-29 | 1 | -0/+11 |
| | | |||||
| * | breaking change: remove federated server mechanism (#207) | William Boman | 2021-10-29 | 1 | -6/+0 |
| | | | | | | | Users will have to reinstall the following servers: - cssls - html - jsonls | ||||
| * | add synchronous variants of commands for better headless interop (#189) | William Boman | 2021-10-26 | 1 | -6/+17 |
| | | |||||
| * | add setting for configuring server install dir (#166) | William Boman | 2021-10-17 | 1 | -2/+12 |
| | | |||||
| * | doc: fix indentation once again | William Boman | 2021-10-17 | 1 | -34/+34 |
| | | |||||
| * | installers/pip3: add setting for adding extra install args (#151) | William Boman | 2021-10-17 | 1 | -0/+8 |
| | | |||||
| * | doc: fix indentation | William Boman | 2021-10-14 | 1 | -30/+30 |
| | | |||||
| * | add eslint, deprecate eslintls (#149) | William Boman | 2021-10-14 | 1 | -2/+2 |
| | | |||||
| * | update docs | William Boman | 2021-10-14 | 1 | -14/+28 |
| | | |||||
| * | add keybindings to UI window (#140) | William Boman | 2021-10-10 | 1 | -21/+47 |
| | | | | | | | | | | | | | | | | - Allows for expanding servers to view more information about it. - Allows for installing/reinstalling/uninstalling servers. The default keybindings is an attempt to mimic vim-fugitive's :Git maps, and these can be overriden. The keybinding implementation in display.lua is a bit hacky, but it works and the "public" API is at least manageable. This will also open up for adding more metadata in the future, such as filetype information, currently installed version, latest available version, etc. Also there's Cowth Vader. | ||||
| * | windows: attempt all common archiver programs (#136) | William Boman | 2021-10-06 | 1 | -1/+1 |
| | | |||||
| * | attempt curl if wget is not available (#129) | William Boman | 2021-10-05 | 1 | -1/+1 |
| | | |||||
| * | lower default log level to INFO (#119) | William Boman | 2021-10-02 | 1 | -1/+1 |
| | | |||||
| * | fix logging at correct level, also add :LspInstallLog command | William Boman | 2021-09-30 | 1 | -12/+12 |
| | | |||||
