mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 01:26:46 +00:00
15 lines
419 B
Lua
15 lines
419 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', 'shell.qml' },
|
|
}
|