From 481aa6599ed745461e7f9e8dc26c2c6521b179ac Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Sun, 30 Aug 2020 16:11:11 -0400 Subject: [PATCH] Add yasnippet support --- init.el | 11 +++++++++++ 1 file changed, 11 insertions(+) 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) ;;====================