Files
nixos-config/home/programs/nixvim/plugins/typst-preview.nix
Elias Schröter 761067ca6e nixvim plugins
install all currently wanted plugins
2026-04-13 18:09:16 +02:00

31 lines
524 B
Nix

{ ... }:
{
programs.nixvim = {
plugins.typst-preview = {
enable = true;
lazyLoad = {
settings = {
ft = [ "typst" ];
cmd = "TypstPreview";
};
};
settings.open_command = "qutebrowser --target tab %s";
};
files."ftplugin/typst.lua".keymaps = [
{
action = "<CMD>TypstPreview<CR>";
key = "<C-k>t";
mode = [
"n"
"v"
"i"
];
options.desc = "Typst Preview";
}
];
};
}