diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-08-10 15:59:35 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-08-10 15:59:35 +0100 |
commit | 499ee4e9f33e972b93afe319a9ce5803dd113875 (patch) | |
tree | 4f42848d9e76f8e8b58ef4e94140bff74654baae | |
parent | 8a9dfe222b9cb75492abd6a53a96bc648d0579af (diff) | |
download | dotfiles-499ee4e9f33e972b93afe319a9ce5803dd113875.tar.gz |
easy-kill
-rw-r--r-- | .emacs.d/lisp/init-kill.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-kill.el b/.emacs.d/lisp/init-kill.el index f73996c..2cc5ac7 100644 --- a/.emacs.d/lisp/init-kill.el +++ b/.emacs.d/lisp/init-kill.el @@ -7,6 +7,11 @@ :config (browse-kill-ring-default-keybindings)) +(use-package easy-kill + :bind + ([remap kill-ring-save] . easy-kill) + ([remap mark-sexp] . easy-mark)) + (use-package emacs :config (defadvice exchange-point-and-mark (before deactivate-mark activate compile) |