Update .config/nvim/lua/plugins/nvim-lspconfig.lua

This commit is contained in:
punkfairie 2024-04-22 19:36:16 -07:00
parent 0b6a9e767c
commit af6486f9fc
No known key found for this signature in database
GPG key ID: 284B78B49C058673

View file

@ -5,15 +5,18 @@ return {
opts = { opts = {
servers = { servers = {
-- data/conf -- data/conf
{{ if not .isServer -}}
sqlls = {}, sqlls = {},
{{ end -}}
taplo = {}, taplo = {},
-- web -- web
html = { html = {
filetypes = { "html", "liquid" }, filetypes = { "html" {{ if not .isServer }}, "liquid"{{ end }} },
}, },
css_variables = { mason = false }, css_variables = { mason = false },
cssls = {}, cssls = {},
{{ if not .isServer -}}
denols = {}, denols = {},
volar = { volar = {
filetypes = { filetypes = {
@ -34,6 +37,7 @@ return {
}, },
}, },
}, },
{{ end -}}
emmet_language_server = { emmet_language_server = {
filetypes = { filetypes = {
"css", "css",
@ -72,10 +76,12 @@ return {
}, },
}, },
{{ if not .isServer -}}
-- php -- php
phpactor = { phpactor = {
filetypes = { "php", "blade" }, filetypes = { "php", "blade" },
}, },
{{ end -}}
-- shell -- shell
bashls = {}, bashls = {},