fix: Remove unneccesary capabilities def
Blink.cmp takes care of this for us
This commit is contained in:
parent
d3565389ab
commit
a06b732d25
1 changed files with 1 additions and 10 deletions
|
@ -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 = {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue