nix-community.nixvim/tests/test-sources/plugins/languages/typst/typst-vim.nix
2023-11-19 12:18:09 +01:00

20 lines
317 B
Nix

{
empty = {
plugins.typst-vim.enable = true;
};
example = {
plugins.typst-vim = {
enable = true;
cmd = "typst";
pdfViewer = "zathura";
concealMath = false;
autoCloseToc = false;
keymaps = {
silent = true;
watch = "<leader>w";
};
};
};
}