nix-community.nixvim/tests/test-sources/plugins/languages/typst/typst-vim.nix

21 lines
317 B
Nix
Raw Normal View History

2023-05-26 11:00:04 +02:00
{
empty = {
plugins.typst-vim.enable = true;
};
example = {
plugins.typst-vim = {
enable = true;
2023-11-17 19:44:54 +01:00
cmd = "typst";
pdfViewer = "zathura";
concealMath = false;
autoCloseToc = false;
2023-05-26 11:00:04 +02:00
keymaps = {
silent = true;
watch = "<leader>w";
};
};
};
}