diff --git a/.config/nvim/lua/plugins/typst.lua b/.config/nvim/lua/plugins/typst.lua new file mode 100644 index 00000000..3fab90eb --- /dev/null +++ b/.config/nvim/lua/plugins/typst.lua @@ -0,0 +1,28 @@ +return { + { + "williamboman/mason.nvim", + opts = { + ensure_installed = { + "tinymist", + }, + }, + }, + { + "neovim/nvim-lspconfig", + opts = { + servers = { + tinymist = { + formatterMode = "typstyle", + exportPdf = "onType", + semanticTokens = "disable", + }, + }, + }, + }, + { + "chomosuke/typst-preview.nvim", + ft = "typst", + version = "1.*", + opts = {}, + }, +}