10 lines
203 B
Lua
10 lines
203 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { "/usr/bin/tinymist" },
|
|
filetypes = { "typst" },
|
|
settings = {
|
|
formatterMode = "typstyle",
|
|
exportPdf = "onType",
|
|
semanticTokens = "disable"
|
|
}
|
|
}
|