summary refs log tree commit diff
path: root/config/init-snippets.el
blob: 7c6a83ed9bd7c47af10ffd497c6768561e19be25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; 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