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