13 lines
218 B
Nix
Executable file
13 lines
218 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
programs.nixvim.plugins.image = {
|
|
enable = true;
|
|
backend = "ueberzug";
|
|
};
|
|
|
|
programs.nixvim.plugins.clipboard-image = {
|
|
enable = true;
|
|
clipboardPackage = pkgs.wl-clipboard;
|
|
};
|
|
}
|