nix-community.nixvim/tests/test-sources/plugins/by-name/typst-vim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
350 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;
settings = {
cmd = "typst";
pdf_viewer = "zathura";
2024-09-08 13:52:18 +01:00
conceal_math = 0;
auto_close_toc = 0;
};
2023-05-26 11:00:04 +02:00
keymaps = {
silent = true;
watch = "<leader>w";
};
};
};
}