Fix accidental activation of flycheck-pos-tip-mode in emacs lisp layer

The issue was that `flycheck-package` explicitly
activated `flycheck-pos-tip-mode` however
this package is owned by `syntax checking layer`
and should only be activated by it directly.
This commit is contained in:
smile13241324 2019-04-12 20:31:37 +02:00
parent 025e69256e
commit 6a32d31da8

View file

@ -255,9 +255,7 @@
(defun emacs-lisp/init-flycheck-package ()
(use-package flycheck-package
:defer t
:init (with-eval-after-load 'flycheck
(flycheck-pos-tip-mode))))
:defer t))
(defun emacs-lisp/post-init-counsel-gtags ()
(spacemacs/counsel-gtags-define-keys-for-mode 'emacs-lisp-mode))