diff --git a/lazy-lock.json b/lazy-lock.json index cbd112b..c2d42c7 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -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" } } diff --git a/lsp/tinymist.lua b/lsp/tinymist.lua index 0f9be70..c58d891 100644 --- a/lsp/tinymist.lua +++ b/lsp/tinymist.lua @@ -1,6 +1,10 @@ ---@type vim.lsp.Config return { cmd = { "/usr/bin/tinymist" }, - filetypes = { "typ" }, + filetypes = { "typst" }, + settings = { + formatterMode = "typstyle", + exportPdf = "onType", + semanticTokens = "disable" + } } -