Remove flycheck-package; disable flycheck-mode in elisp buffers

This commit is contained in:
Henrik Lissner 2016-07-10 02:53:42 -04:00
parent e4c00ebe7b
commit b9e1c64679
3 changed files with 1 additions and 5 deletions

View file

@ -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)