aboutsummaryrefslogtreecommitdiffstats
path: root/tests/mason-lspconfig/setup_spec.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: extract mason-lspconfig to separate plugin (#109)William Boman2022-07-221-93/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | The rationale behind this is to make boundaries clearer as mason.nvim has no direct relation with lspconfig per se. Also, hopefully, by having it as a separate package like this would encourage more people to write similar extensions (think mason-dap and mason-null-ls). Ideally such extensions wouldn't be required at all, but there are definitely gaps to fill as of today. From now on you'll need to add `williamboman/mason-lspconfig.nvim` as a plugin if you want to use the `mason-lspconfig` extension: ```lua use { { "williamboman/mason.nvim", branch = "alpha" }, "williamboman/mason-lspconfig.nvim", "neovim/nvim-lspconfig", } ``` ```lua Plug "williamboman/mason.nvim", { 'branch': 'alpha' } Plug "williamboman/mason-lspconfig.nvim" Plug "neovim/nvim-lspconfig" ```
* chore: update generated code (#99)williambotman[bot]2022-07-191-0/+2
| | | | | | | | | * chore: update generated code * prepend rtp * stub is_installed Co-authored-by: William Boman <william@redwill.se>
* docs: update mason-lspconfig.setup_handlers() docs & add some tests (#94)William Boman2022-07-171-0/+46
|
* feat(mason-lspconfig): add get_installed_servers() method & add more tests (#84)William Boman2022-07-161-0/+45