Remove dead sqls

This commit is contained in:
Tyler Hallada
2023-04-17 23:10:44 -04:00
parent 2b44b16f68
commit 9928b63d6b
3 changed files with 7 additions and 7 deletions

View File

@@ -77,10 +77,10 @@ require('lspconfig')['marksman'].setup({
on_attach = on_attach,
flags = lsp_flags,
})
require('lspconfig')['sqls'].setup({
require('lspconfig')['sqlls'].setup({
on_attach = function(client, bufn)
on_attach(client, bufn)
require('sqls').on_attach(client, bufn)
require('sqlls').on_attach(client, bufn)
end,
flags = lsp_flags,
})