blob: 7c6a83ed9bd7c47af10ffd497c6768561e19be25 (
plain) (
tree)
|
|
;;; init-snippets.el --- configure snippets -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>
;;; Commentary:
;; Configure snippets
;;; Code:
(use-package yasnippet
:ensure t
:defer t
:diminish
:hook ((prog-mode . yas-minor-mode))
:config
(yas-reload-all))
(provide 'init-snippets)
;;; init-snippets.el ends here
|