14 lines
406 B
Lua
14 lines
406 B
Lua
---@brief
|
|
---
|
|
--- https://doc.qt.io/qt-6/qtqml-tooling-qmlls.html
|
|
---
|
|
--- > QML Language Server is a tool shipped with Qt that helps you write code in your favorite (LSP-supporting) editor.
|
|
---
|
|
--- Source in the [QtDeclarative repository](https://code.qt.io/cgit/qt/qtdeclarative.git/)
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'qmlls' },
|
|
filetypes = { 'qml', 'qmljs' },
|
|
root_markers = { '.git' },
|
|
}
|