;;; init-snippets.el --- configure snippets -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; Configure snippets ;;; Code: (use-package yasnippet :ensure t :hook (after-init . yas-global-mode)) ;; Yasnippet Completion At Point Function (use-package yasnippet-capf :ensure t :init (add-to-list 'completion-at-point-functions #'yasnippet-capf)) (provide 'init-snippets) ;;; init-snippets.el ends here