1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 20:16:07 +01:00
nixvim/tests/test-sources/plugins/languages/typst/typst-vim.nix
2024-02-22 01:34:39 +01:00

23 lines
358 B
Nix

{
empty = {
plugins.typst-vim.enable = true;
};
example = {
plugins.typst-vim = {
enable = true;
settings = {
cmd = "typst";
pdf_viewer = "zathura";
conceal_math = false;
auto_close_toc = false;
};
keymaps = {
silent = true;
watch = "<leader>w";
};
};
};
}