Update: 2024-10-15

This commit is contained in:
2024-10-15 20:59:39 +03:00
parent 89989c222f
commit 814425e4b7
41 changed files with 1044 additions and 546 deletions

13
lua/plugins/lsp/typst.lua Normal file
View File

@@ -0,0 +1,13 @@
local M = {}
M.setup = function(lsp, capabilities)
lsp.tinymist.setup({
capabilities = capabilities,
settings = {
exportPdf = "onType",
outputPath = "$root/target/$dir/$name",
},
})
end
return M