mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
17 lines
332 B
Lua
Vendored
17 lines
332 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'qml-lsp' },
|
|
filetypes = { 'qmljs' },
|
|
root_dir = util.root_pattern '*.qml',
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://invent.kde.org/sdk/qml-lsp
|
|
|
|
LSP implementation for QML (autocompletion, live linting, etc. in editors)
|
|
]],
|
|
},
|
|
}
|