From 74d28064692edf3feb9e16b644c2391f74c7cde6 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Sat, 24 Feb 2024 19:17:43 +0000 Subject: [PATCH] Make Helix use keyboard for pasting --- helix/config.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index a5e9569..a78e7fa 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -1,5 +1,10 @@ theme = "onedark" +[keys.normal] +# Use system clipboard +y = "yank_main_selection_to_clipboard" +p = "paste_clipboard_before" + [editor] line-number = "relative" bufferline = "always"