aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-lspconfig/server_configurations
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: extract mason-lspconfig to separate plugin (#109)William Boman2022-07-2224-313/+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" ```
* fix: remove unused .env() functions (#105)William Boman2022-07-212-4/+0
|
* refactor(omnisharp)!: separate mono into its own package (#101)William Boman2022-07-202-31/+6
|
* fix(mason-lspconfig): patch some server's cmd on Windows (#100)William Boman2022-07-193-0/+15
|
* feat: add more wrapper executables for packages that don't provide one (#63)William Boman2022-07-1310-80/+17
|
* fix(jdtls)!: remove lspconfig settings override (#58)William Boman2022-07-122-111/+0
|
* refactor: add mason-schemas and mason-core modules (#29)William Boman2022-07-0817-34/+34
| | | | | * refactor: add mason-schemas and move generated filetype map to mason-lspconfig * refactor: add mason-core module
* mason.nvimWilliam Boman2022-07-0724-0/+501