You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
336 B

  1. ;;; plugin-yasnippet --- Summary
  2. ;;; Commentary:
  3. ;;; Code:
  4. (use-package yasnippet
  5. :ensure t
  6. :diminish yas
  7. :config
  8. (yas-global-mode)
  9. (add-to-list 'yas-snippet-dirs (concat user-emacs-directory "snippets")))
  10. (provide 'plugin-yasnippet)
  11. ;;; plugin-yasnippet ends here