mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
18 lines
213 B
Nix
18 lines
213 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.typst-vim.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.typst-vim = {
|
||
|
enable = true;
|
||
|
|
||
|
keymaps = {
|
||
|
silent = true;
|
||
|
|
||
|
watch = "<leader>w";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|