From a1519b7a51c00ebc4c6a24a5c62fb11ddd5f8d59 Mon Sep 17 00:00:00 2001 From: cool-mist Date: Sat, 8 Aug 2026 11:21:33 +0530 Subject: [PATCH] Add qml --- init.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/init.lua b/init.lua index ea9d61f..b1ea9a0 100644 --- a/init.lua +++ b/init.lua @@ -341,6 +341,13 @@ lazy.setup({ V.lsp.config('lua_ls', {}) V.lsp.enable('lua_ls') + V.lsp.config('qmlls', { + cmd = { "qmlls6" }, + filetypes = { "qml", "qmljs" }, + single_file_support = true, + }) + V.lsp.enable('qmlls') + -- The default borders from nvim-lspconfig, which is what is used to configure the lsp servers -- in this configuration, are not visible. This is a workaround to update the borders key in the -- corresponding lsp handlers for hover and signature_help. This is a workaround until I implement