From 7fac759c6cb6d1ac87adfa81ec840167131118b3 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sun, 2 Feb 2025 16:15:03 -0500 Subject: [PATCH] AutoYADM commit: 2025-02-02 16:15:03 --- .config/nvim/lua/plugins/typst.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .config/nvim/lua/plugins/typst.lua 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 = {}, + }, +}