mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 08:01:35 +09:00
12 lines
301 B
EmacsLisp
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
|