diff --git a/init.el b/init.el index b93f429..c0546f7 100644 --- a/init.el +++ b/init.el @@ -607,6 +607,17 @@ :after (company)) +;;==================== +;; yasnippet (Snippet Insertion/Completion) +;;==================== + +;; Load yasnippet +(use-package yasnippet + :demand + t + :config + (yas-global-mode t)) + ;;==================== ;; Projectile (Project Interaction) ;;====================