mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
28 lines
450 B
Nix
28 lines
450 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";
|
|
};
|
|
};
|
|
};
|
|
|
|
no-packages = {
|
|
plugins.typst-vim.enable = true;
|
|
dependencies.typst.enable = false;
|
|
};
|
|
}
|