diff options
| author | Christian <[email protected]> | 2026-05-16 17:38:23 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-05-16 17:38:23 -0500 |
| commit | ce590de4e3af46fd34c2f52d72b15130eaf2b570 (patch) | |
| tree | 6c478bc03dfa2e2fe04de6f07ee9f93278c5fbbb | |
| parent | 743e9c722849f0e5517709e637cf618317881b15 (diff) | |
Add alacritty right-click paste and copy-on-select
| -rw-r--r-- | modules/home/christian.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/home/christian.nix b/modules/home/christian.nix index 381f1bc..2942916 100644 --- a/modules/home/christian.nix +++ b/modules/home/christian.nix @@ -24,6 +24,13 @@ enable = true; settings = { font.size = 8; + selection.save_to_clipboard = true; + mouse.bindings = [ + { + mouse = "Right"; + action = "Paste"; + } + ]; }; }; |
