diff options
author | Thanos Apollo <[email protected]> | 2024-01-25 07:31:37 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-25 07:31:37 +0200 |
commit | 2315cdf8afb501d5bb8719df21e467fbc9061b56 (patch) | |
tree | 33c42f843940450495e7e1b1e29bc3cc35ccf72b /.emacs.d/init.el | |
parent | f418226360e50a63e6e7bf1f6419f521ac9c072a (diff) |
emacs:(emojify,flycheck) Ensure is loaded
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 99a9c9b..55c70f3 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -507,13 +507,13 @@ :defer t) (use-package emojify - :defer t + :ensure t :config (global-emojify-mode) (global-emojify-mode-line-mode)) (use-package flycheck - :defer t + :ensure t :config (setf flycheck-emacs-lisp-load-path 'inherit) :hook ((org-src-mode . (lambda () (flycheck-disable-checker 'emacs-lisp-checkdoc))))) |