From 0edd6e301cee34acad28b609d5f0fd772b33b59d Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 22 Jan 2025 11:42:09 +0300 Subject: [PATCH] Foot: Add system paste as alt.i. --- home/file/foot/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/home/file/foot/default.nix b/home/file/foot/default.nix index fc254f0..2c1b3da 100644 --- a/home/file/foot/default.nix +++ b/home/file/foot/default.nix @@ -21,9 +21,14 @@ in background = config.module.style.color.bg.dark; foreground = config.module.style.color.fg.light; }; - key-bindings = { - show-urls-launch = "Mod1+o"; - }; + key-bindings = + let + mod = "Mod1"; + in + { + show-urls-launch = "${mod}+o"; + clipboard-paste = "Control+Shift+v XF86Paste ${mod}+i"; + }; }; }; }