From 083c8a66a52df93ba70488e498a77e4378ed0f7c Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sat, 30 Dec 2017 09:32:07 +0200 Subject: [PATCH] Remove a couple of redundant requires All the commands from those packages are autoloaded anyways, so there's no need to require the packages before they are actually used. --- modules/prelude-ivy.el | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/prelude-ivy.el b/modules/prelude-ivy.el index 8924659..8ecea2f 100644 --- a/modules/prelude-ivy.el +++ b/modules/prelude-ivy.el @@ -47,15 +47,11 @@ ;; swiper provides enhanced buffer search -(require 'swiper) - (global-set-key "\C-s" 'swiper) ;; counsel supercharges a lot of commands with some ivy magic -(require 'counsel) - (global-set-key (kbd "M-x") 'counsel-M-x) (global-set-key (kbd "C-x C-f") 'counsel-find-file) (global-set-key (kbd " f") 'counsel-describe-function)