diff --git a/Cask b/Cask index b587f1657..aa98a3e92 100644 --- a/Cask +++ b/Cask @@ -95,7 +95,6 @@ ;; Flycheck --- core/core-flycheck.el (depends-on "flycheck") -(depends-on "flycheck-package") (depends-on "flycheck-pos-tip") (depends-on "flyspell") diff --git a/core/core-flycheck.el b/core/core-flycheck.el index 9f1b0afa3..19f8009da 100644 --- a/core/core-flycheck.el +++ b/core/core-flycheck.el @@ -28,9 +28,6 @@ (define-fringe-bitmap 'flycheck-fringe-bitmap-double-arrow [0 0 0 0 0 4 12 28 60 124 252 124 60 28 12 4 0 0 0 0]) - (require 'flycheck-package) - (flycheck-package-setup) - (when (eq window-system 'mac) (require 'flycheck-pos-tip) (flycheck-pos-tip-mode +1))) diff --git a/modules/module-elisp.el b/modules/module-elisp.el index 58b696630..1ca66c90f 100644 --- a/modules/module-elisp.el +++ b/modules/module-elisp.el @@ -1,7 +1,7 @@ ;;; module-elisp --- all things lisp (associate! emacs-lisp-mode :match "\\(/Cask\\|\\.\\(el\\|gz\\)\\)$") -(add-hook! emacs-lisp-mode '(eldoc-mode flycheck-mode highlight-numbers-mode)) +(add-hook! emacs-lisp-mode '(eldoc-mode highlight-numbers-mode)) ;; Real go-to-definition for elisp (map! :map emacs-lisp-mode-map :m "gd" 'doom/elisp-find-function-at-pt)