Files
nix-config/home-manager/nixvim/images.nix
2024-05-28 10:28:32 +02:00

17 lines
299 B
Nix

{pkgs, ...}:
{
plugins = {
image.enable = true;
clipboard-image = {
# todo change based on graphical settings
clipboardPackage = pkgs.wl-clipboard;
enable = true;
filetypes = {
typst = {
affix = ''#image("%s")'';
};
};
};
};
}