nix-community.nixvim/tests/test-sources/plugins/by-name/typst-vim/default.nix
2024-09-09 14:34:18 -05:00

23 lines
350 B
Nix

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