Add headers and provide to each package

This commit is contained in:
Maciej 2020-07-24 09:10:11 +03:00
parent ae4946ea96
commit 4337243183
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
11 changed files with 105 additions and 11 deletions

View file

@ -1,3 +1,8 @@
;;; 02ivy -- summary
;;; Commentary:
;;; Counsel, Swiper and Ivy.
;;; Code:
(use-package counsel :ensure t :defer t)
(use-package swiper :ensure t :defer t)
@ -19,3 +24,6 @@
(global-set-key (kbd "<f1> l") 'counsel-find-library)
(global-set-key (kbd "<f2> i") 'counsel-info-lookup-symbol)
(global-set-key (kbd "<f2> u") 'counsel-unicode-char)
(provide '02ivy)
;;; 02ivy.el ends here