1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-13 04:21:10 +01:00
nixvim/tests/test-sources/plugins/by-name/img-clip/default.nix
saygo-png bc0555c869 plugins/img-clip: init
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-07-17 14:33:07 +00:00

25 lines
484 B
Nix

{
empty = {
plugins.img-clip.enable = true;
};
example = {
plugins.img-clip = {
enable = true;
settings = {
default = {
dir_path = "assets";
file_name = "%y-%m-%d-%h-%m-%s";
use_absolute_path = false;
relative_to_current_file = false;
template = "$file_path";
};
filetypes = {
markdown = {
download_images = true;
};
};
};
};
};
}