| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | refactor!: extract mason-lspconfig to separate plugin (#109) | William Boman | 2022-07-22 | 30 | -1032/+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 Boman | 2022-07-21 | 2 | -4/+0 |
| | | |||||
| * | refactor(omnisharp)!: separate mono into its own package (#101) | William Boman | 2022-07-20 | 4 | -32/+8 |
| | | |||||
| * | fix(mason-lspconfig): patch some server's cmd on Windows (#100) | William Boman | 2022-07-19 | 7 | -9/+113 |
| | | |||||
| * | docs: update mason-lspconfig.setup_handlers() docs & add some tests (#94) | William Boman | 2022-07-17 | 1 | -17/+13 |
| | | |||||
| * | feat(ui): bring focus to the installation section when :LspInstall (#91) | William Boman | 2022-07-17 | 1 | -2/+6 |
| | | |||||
| * | fix(mason-lspconfig): deduplicate :LspInstall completion items (#88) | William Boman | 2022-07-17 | 1 | -2/+2 |
| | | |||||
| * | feat(mason-lspconfig): add get_installed_servers() method & add more tests (#84) | William Boman | 2022-07-16 | 2 | -29/+41 |
| | | |||||
| * | docs: updates (#83) | William Boman | 2022-07-16 | 1 | -1/+1 |
| | | |||||
| * | docs: add comment header to require("mason-lspconfig").setup_handlers() (#76) | William Boman | 2022-07-15 | 1 | -0/+17 |
| | | |||||
| * | chore: change emmylua annotation syntax from @ to : for comments (#73) | William Boman | 2022-07-14 | 1 | -1/+1 |
| | | |||||
| * | feat: add more wrapper executables for packages that don't provide one (#63) | William Boman | 2022-07-13 | 10 | -80/+17 |
| | | |||||
| * | fix(jdtls)!: remove lspconfig settings override (#58) | William Boman | 2022-07-12 | 2 | -111/+0 |
| | | |||||
| * | fix(mason-lspconfig): fix installing by current filetype (#37) | William Boman | 2022-07-08 | 1 | -1/+1 |
| | | |||||
| * | feat(mason-lspconfig): add :LspInstall and :LspUninstall commands (#35) | William Boman | 2022-07-08 | 3 | -1/+144 |
| | | | | | These should be in complete parity with the nvim-lsp-installer commands. Now even better than before. | ||||
| * | refactor: add mason-schemas and mason-core modules (#29) | William Boman | 2022-07-08 | 20 | -41/+203 |
| | | | | | | * refactor: add mason-schemas and move generated filetype map to mason-lspconfig * refactor: add mason-core module | ||||
| * | refactor: move packages to mason-registry (#27) | William Boman | 2022-07-08 | 1 | -7/+6 |
| | | |||||
| * | fix(mason-lspconfig): fix incorrect require path | William Boman | 2022-07-07 | 1 | -15/+17 |
| | | |||||
| * | chore: s/package/pkg/ | William Boman | 2022-07-07 | 1 | -2/+2 |
| | | | | | As to not accidentally access the actual package global 😬 | ||||
| * | style: run stylua | William Boman | 2022-07-07 | 2 | -5/+3 |
| | | |||||
| * | mason.nvim | William Boman | 2022-07-07 | 27 | -0/+797 |
