diff --git a/lua/plugins/quarto.lua b/lua/plugins/quarto.lua index 7a06d4f..7ffcc1d 100644 --- a/lua/plugins/quarto.lua +++ b/lua/plugins/quarto.lua @@ -27,7 +27,7 @@ return { }, opts = { lspFeatures = { - languages = { "r", "python", "julia", "bash", "lua", "html" }, + languages = { "r", "python", "julia", "bash", "lua", "html", "dot" }, }, }, }, @@ -54,6 +54,7 @@ return { "latex", "html", "css", + "dot" }, highlight = { enable = true, @@ -276,6 +277,12 @@ return { }, }) + lspconfig.dotls.setup({ + on_attach = on_attach, + capabilities = capabilities, + flags = lsp_flags, + }) + local function strsplit(s, delimiter) local result = {} for match in (s .. delimiter):gmatch("(.-)" .. delimiter) do