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,4 +1,8 @@
;; Company completion framework configuration
;;; 06company-yasnippet -- summary
;;; Commentary:
;;; Company completion framework configuration
;;; Code:
(use-package yasnippet
:ensure t
:defer t)
@ -66,3 +70,6 @@
(define-key text-mode-map (kbd "C-c y") 'company-yasnippet)
(define-key text-mode-map (kbd "<f13>") 'insert-space-and-complete)
(define-key text-mode-map (kbd "TAB") 'company-indent-or-complete-common)
(provide '06company-yasnippet)
;;; 06company-yasnippet.el ends here