From 696904aa8e36b7a798104871da787248a02e6bcb Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Thu, 10 Nov 2016 17:08:46 +0100 Subject: [PATCH] Install the easy-kill package --- customizations.el | 1 + init.el | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/customizations.el b/customizations.el index d9d8322..3c76c8a 100644 --- a/customizations.el +++ b/customizations.el @@ -48,6 +48,7 @@ diminish dired-k drag-stuff + easy-kill electric-case electric-spacing emamux diff --git a/init.el b/init.el index 7ed6e8c..8c2a3a6 100644 --- a/init.el +++ b/init.el @@ -830,6 +830,12 @@ (setq auto-save-file-name-transforms `((".*" ,temporary-file-directory t)))) +(use-package easy-kill + :ensure t + :demand t + :config + (global-set-key [remap kill-ring-save] 'easy-kill)) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")