nix-community.nixvim/tests/test-sources/plugins/languages/typst/typst-vim.nix

18 lines
213 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;
keymaps = {
silent = true;
watch = "<leader>w";
};
};
};
}