From baf1c6ce34877ef1e067c986fc41f7d93a7e1bd0 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 10 Oct 2016 20:36:36 +0200 Subject: [PATCH] Move fiplr configuration to use-package --- init.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 2833825..fc86737 100644 --- a/init.el +++ b/init.el @@ -233,6 +233,10 @@ (add-hook 'markdown-mode-hook 'turn-on-smartparens-strict-mode)) +(use-package fiplr + :config + (fiplr-clear-cache)) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el") @@ -431,7 +435,6 @@ ;; Stuff to do after initialization is done ;; TODO: Unordered stuff -(add-hook 'after-init-hook 'fiplr-clear-cache) (add-to-list 'auto-mode-alist '("\\.vala\\'" . vala-mode)) (add-to-list 'auto-mode-alist '("\\.erl\\'" . erlang-mode)) (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))