nix-community.nixvim/tests/test-sources/modules/clipboard.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
286 B
Nix
Raw Normal View History

{
example-with-str = {
clipboard = {
register = "unnamed";
providers.xclip.enable = true;
};
};
example-with-package = {
clipboard = {
register = [
"unnamed"
"unnamedplus"
];
providers.xsel.enable = true;
};
};
}