mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
20 lines
286 B
Nix
20 lines
286 B
Nix
{
|
|
example-with-str = {
|
|
clipboard = {
|
|
register = "unnamed";
|
|
|
|
providers.xclip.enable = true;
|
|
};
|
|
};
|
|
|
|
example-with-package = {
|
|
clipboard = {
|
|
register = [
|
|
"unnamed"
|
|
"unnamedplus"
|
|
];
|
|
|
|
providers.xsel.enable = true;
|
|
};
|
|
};
|
|
}
|