From f5092b31fd0a385922bedff1680dea1a6cae2cee Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sat, 12 Apr 2014 17:47:06 +0300 Subject: [PATCH 1/2] Add the easy-kill package --- core/prelude-editor.el | 4 ++++ core/prelude-packages.el | 1 + 2 files changed, 5 insertions(+) diff --git a/core/prelude-editor.el b/core/prelude-editor.el index 31c5a09..28f3fa3 100644 --- a/core/prelude-editor.el +++ b/core/prelude-editor.el @@ -376,6 +376,10 @@ indent yanked text (with prefix arg don't indent)." ;; enable winner-mode to manage window configurations (winner-mode +1) +;; easy-kill +(global-set-key [remap kill-ring-save] 'easy-kill) +(global-set-key [remap mark-sexp] 'easy-mark) + (provide 'prelude-editor) ;;; prelude-editor.el ends here diff --git a/core/prelude-packages.el b/core/prelude-packages.el index 7886d27..57994e2 100644 --- a/core/prelude-packages.el +++ b/core/prelude-packages.el @@ -49,6 +49,7 @@ browse-kill-ring dash diminish + easy-kill elisp-slime-nav epl expand-region From 01bb1c9e90da2b729693d02b03ddc20682b86eba Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sun, 13 Apr 2014 11:46:49 +0300 Subject: [PATCH 2/2] Code style --- core/prelude-osx.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/prelude-osx.el b/core/prelude-osx.el index f7e3a92..49cab8e 100644 --- a/core/prelude-osx.el +++ b/core/prelude-osx.el @@ -35,6 +35,7 @@ ;; On OS X Emacs doesn't use the shell PATH if it's not started from ;; the shell. Let's fix that: (prelude-require-packages '(exec-path-from-shell)) + (require 'exec-path-from-shell) (exec-path-from-shell-initialize)