try image handler for nvim

This commit is contained in:
Kopatz
2024-05-28 10:08:05 +02:00
parent 9d72bb8dd0
commit 2a7725403d
4 changed files with 21 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
{pkgs, ...}:
{
plugins = {
image.enable = true;
clipboard-image = {
# todo change based on graphical settings
clipboardPackage = pkgs.wl-clipboard;
enable = true;
};
};
}