mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
18 lines
270 B
Nix
18 lines
270 B
Nix
|
{pkgs}: {
|
||
|
example-with-str = {
|
||
|
clipboard = {
|
||
|
register = "unnamed";
|
||
|
|
||
|
providers.xclip.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
example-with-package = {
|
||
|
clipboard = {
|
||
|
register = ["unnamed" "unnamedplus"];
|
||
|
|
||
|
providers.xsel.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|