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