From a0f1d0439d39c1935c4a8d49e9800c674eff4c68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Mon, 16 Dec 2019 21:13:53 +0100 Subject: [PATCH] turn on yasnippet global mode after init (fix for Emacs 27 git) --- init.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/init.el b/init.el index a6aa6b1..9609acc 100644 --- a/init.el +++ b/init.el @@ -864,8 +864,7 @@ inserted between the braces between the braces." (setq-default abbrev-mode 1) (use-package yasnippet - :init - (yas-global-mode 1) + :hook (after-init . yas-global-mode) :bind (:map yas-minor-mode-map ("C-c & t" . yas-describe-tables)