Update .config/nvim/lua/plugins/nvim-lspconfig.lua
This commit is contained in:
parent
0b6a9e767c
commit
af6486f9fc
1 changed files with 7 additions and 1 deletions
|
@ -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 = {},
|
||||||
|
|
Loading…
Reference in a new issue