24 lines
929 B
Lua
24 lines
929 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
init_options = {
|
|
settings = {
|
|
xml = {
|
|
format = {
|
|
enabled = true, -- is able to format document
|
|
splitAttributes = true, -- each attribute is formatted onto new line
|
|
joinCDATALines = false, -- normalize content inside CDATA
|
|
joinCommentLines = false, -- normalize content inside comments
|
|
formatComments = true, -- keep comment in relative position
|
|
joinContentLines = false, -- normalize content inside elements
|
|
spaceBeforeEmptyCloseLine = true, -- insert whitespace before self closing tag end bracket
|
|
},
|
|
validation = {
|
|
noGrammar = "ignore",
|
|
enabled = true,
|
|
schema = true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|