mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
20 lines
317 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|