Files
dotfiles/.config/nvim/lsp/qmlls.lua
2026-03-15 13:53:38 +02:00

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' },
}