1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
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";
};
};
};
}