better typst support

This commit is contained in:
λmolinae 2025-05-26 01:09:43 -06:00
parent c551043634
commit a02ec2e544
2 changed files with 8 additions and 3 deletions

View file

@ -18,5 +18,6 @@
"snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" },
"telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" },
"telescope.nvim": { "branch": "master", "commit": "b4da76be54691e854d3e0e02c36b0245f945c2c7" },
"tokyonight.nvim": { "branch": "main", "commit": "057ef5d260c1931f1dffd0f052c685dcd14100a3" }
"tokyonight.nvim": { "branch": "main", "commit": "057ef5d260c1931f1dffd0f052c685dcd14100a3" },
"typst-preview.nvim": { "branch": "master", "commit": "dea4525d5420b7c32eebda7de15a6beb9d6574fa" }
}

View file

@ -1,6 +1,10 @@
---@type vim.lsp.Config
return {
cmd = { "/usr/bin/tinymist" },
filetypes = { "typ" },
filetypes = { "typst" },
settings = {
formatterMode = "typstyle",
exportPdf = "onType",
semanticTokens = "disable"
}
}