From 07a81c54f3ffafc8b3c7c0535b3bf295254d6850 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 6 Mar 2024 23:36:31 -0500 Subject: [PATCH] global/vim: set Xorg clipboard as default --- users/modules/global/vim.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/users/modules/global/vim.nix b/users/modules/global/vim.nix index 14c715c..d3787a3 100644 --- a/users/modules/global/vim.nix +++ b/users/modules/global/vim.nix @@ -18,5 +18,8 @@ tabstop = 4; shiftwidth = 4; }; + extraConfig = '' + set clipboard=unnamedplus,unnamed + ''; }; }