diff options
author | Squibid <me@zacharyscheiman.com> | 2023-07-06 12:28:31 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-07-06 12:28:31 -0400 |
commit | a45e5e40742f24e4896383d1554ea5b7a0524e60 (patch) | |
tree | 82c715dbff06edf86e575498cd77820dbfcdac0e /after/plugin/lsp.lua | |
parent | 46e4dc44423ae07c1d5c5f0938f5a466d51d6afd (diff) | |
download | nvim-a45e5e40742f24e4896383d1554ea5b7a0524e60.tar.gz nvim-a45e5e40742f24e4896383d1554ea5b7a0524e60.tar.bz2 nvim-a45e5e40742f24e4896383d1554ea5b7a0524e60.zip |
make jdtls work without the seperate plugin :)
Diffstat (limited to 'after/plugin/lsp.lua')
-rw-r--r-- | after/plugin/lsp.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua index a8932c1..8d76750 100644 --- a/after/plugin/lsp.lua +++ b/after/plugin/lsp.lua @@ -89,8 +89,5 @@ require('mason-lspconfig').setup({}) local get_servers = require('mason-lspconfig').get_installed_servers for _, server_name in ipairs(get_servers()) do - lspconfig[server_name].setup({ - on_attach = lsp_attach, - capabilities = require('cmp_nvim_lsp').default_capabilities(), - }) + lspconfig[server_name].setup({ on_attach = lsp_attach, }) end |