dotfiles/.config/emacs/lisp/init-yasnippet.el
2023-05-19 15:26:09 +09:00

14 lines
374 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)
:config
(setq yas-indent-line nil)) ;; indent does not work properly.
;; Collection of yasnippet snippets
(use-package yasnippet-snippets)
(provide 'init-yasnippet)
;;; init-yasnippet.el ends here