summaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-05-16 17:38:23 -0500
committerChristian <[email protected]>2026-05-16 17:38:23 -0500
commitce590de4e3af46fd34c2f52d72b15130eaf2b570 (patch)
tree6c478bc03dfa2e2fe04de6f07ee9f93278c5fbbb /modules/home
parent743e9c722849f0e5517709e637cf618317881b15 (diff)
Add alacritty right-click paste and copy-on-select
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/christian.nix7
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";
+ }
+ ];
};
};