diff options
| author | pml68 <contact@pml68.me> | 2024-12-03 20:29:10 +0100 |
|---|---|---|
| committer | pml68 <contact@pml68.me> | 2024-12-03 20:29:10 +0100 |
| commit | 169cd673f595b8802bc29888e037107d00d7d0f2 (patch) | |
| tree | 326e70851b3cff03cd2617857372847b033314d9 /lua/pml68/configs | |
| parent | feat: add "no-tex" docker image (diff) | |
| download | nvim-169cd673f595b8802bc29888e037107d00d7d0f2.tar.gz | |
feat(plugins): add workspace-diagnostics.nvim and ccc.nvim
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/configs/lspconfig.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/pml68/configs/lspconfig.lua b/lua/pml68/configs/lspconfig.lua index 8d16958..55f2d6f 100644 --- a/lua/pml68/configs/lspconfig.lua +++ b/lua/pml68/configs/lspconfig.lua @@ -38,6 +38,9 @@ vim.api.nvim_create_autocmd({ "BufEnter" }, { for _, server in pairs(servers) do local opts = { capabilities = capabilities, + on_attach = function(client, bufnr) + require("workspace-diagnostics").populate_workspace_diagnostics(client, bufnr) + end } local require_ok, conf_opts = pcall(require, "pml68.configs.settings." .. server) |
