This commit is contained in:
2026-08-08 11:21:33 +05:30
parent 631db6780e
commit a1519b7a51
+7
View File
@@ -341,6 +341,13 @@ lazy.setup({
V.lsp.config('lua_ls', {}) V.lsp.config('lua_ls', {})
V.lsp.enable('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 -- 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 -- 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 -- corresponding lsp handlers for hover and signature_help. This is a workaround until I implement