Move flycheck-cask to lang/emacs-lisp

This commit is contained in:
Henrik Lissner 2017-07-17 11:33:47 +02:00
parent 1ba674077a
commit c6677136c1
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 11 additions and 7 deletions

View file

@ -28,7 +28,3 @@
flycheck-display-errors-delay 0.5)
(flycheck-pos-tip-mode +1))
(when (featurep! :lang emacs-lisp)
(def-package! flycheck-cask
:commands flycheck-cask-setup
:init (add-hook 'flycheck-mode-hook #'flycheck-cask-setup)))

View file

@ -4,6 +4,3 @@
(package! flycheck)
(package! flycheck-pos-tip)
(when (featurep! :lang emacs-lisp)
(package! flycheck-cask))

View file

@ -75,6 +75,14 @@
(require 'slime-fuzzy))
(def-package! flycheck-cask
:when (featurep! :feature syntax-checker)
:commands flycheck-cask-setup
:init
(add-hook! 'emacs-lisp-hook
(add-hook 'flycheck-mode-hook #'flycheck-cask-setup nil t)))
;;
;;
;;

View file

@ -4,3 +4,6 @@
(package! auto-compile)
(package! highlight-quoted)
(package! slime)
(when (featurep! :feature syntax-checker)
(package! flycheck-cask))