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.
This commit is contained in:
parent
2bfa877db0
commit
083c8a66a5
1 changed files with 0 additions and 4 deletions
|
@ -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 "<f1> f") 'counsel-describe-function)
|
||||
|
|
Loading…
Reference in a new issue