fix: Remove unneccesary capabilities def

Blink.cmp takes care of this for us
This commit is contained in:
punkfairie 2025-03-15 16:40:50 -07:00
parent d3565389ab
commit a06b732d25
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -1,15 +1,9 @@
-- For cssls.
local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities.textDocument.completion.completionItem.snippetSupport = true
return { return {
{ {
'neovim/nvim-lspconfig', 'neovim/nvim-lspconfig',
opts = { opts = {
servers = { servers = {
cssls = { cssls = {},
capabilities = capabilities,
},
emmet_language_server = { emmet_language_server = {
filetypes = { filetypes = {
@ -30,7 +24,6 @@ return {
}, },
fish_lsp = {}, fish_lsp = {},
gh_actions_ls = {}, gh_actions_ls = {},
html = { html = {
@ -49,9 +42,7 @@ return {
}, },
somesass_ls = {}, somesass_ls = {},
statix = {}, statix = {},
stylelint_lsp = {}, stylelint_lsp = {},
}, },
}, },