dotfiles/.config/emacs/lisp/init-yasnippet.el
2023-05-18 21:32:08 +09:00

12 lines
301 B
EmacsLisp

;;; init-yasnippet.el -*- lexical-binding: t -*-
;; Yet another snippet extension
(use-package yasnippet
:diminish yas-minor-mode
:hook (after-init . yas-global-mode))
;; Collection of yasnippet snippets
(use-package yasnippet-snippets)
(provide 'init-yasnippet)
;;; init-yasnippet.el ends here