mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
23 lines
469 B
Lua
23 lines
469 B
Lua
return {
|
|
"chomosuke/typst-preview.nvim",
|
|
ft = "typst",
|
|
version = "*",
|
|
keys = {
|
|
{ "<leader>ot", vim.cmd.TypstPreviewToggle, desc = "Toggle Typst Preview" },
|
|
},
|
|
cmd = {
|
|
"TypstPreviewUpdate",
|
|
"TypstPreview",
|
|
"TypstPreviewStop",
|
|
"TypstPreviewToggle",
|
|
"TypstPreviewFollowCursor",
|
|
"TypstPreviewNoFollowCursor",
|
|
"TypstPreviewFollowCursorToggle",
|
|
"TypstPreviewSyncCursor",
|
|
},
|
|
build = function()
|
|
require("typst-preview").update()
|
|
end,
|
|
opts = {},
|
|
}
|