Move flycheck-cask to lang/emacs-lisp
This commit is contained in:
parent
1ba674077a
commit
c6677136c1
4 changed files with 11 additions and 7 deletions
|
@ -28,7 +28,3 @@
|
||||||
flycheck-display-errors-delay 0.5)
|
flycheck-display-errors-delay 0.5)
|
||||||
(flycheck-pos-tip-mode +1))
|
(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)))
|
|
||||||
|
|
|
@ -4,6 +4,3 @@
|
||||||
(package! flycheck)
|
(package! flycheck)
|
||||||
(package! flycheck-pos-tip)
|
(package! flycheck-pos-tip)
|
||||||
|
|
||||||
(when (featurep! :lang emacs-lisp)
|
|
||||||
(package! flycheck-cask))
|
|
||||||
|
|
||||||
|
|
|
@ -75,6 +75,14 @@
|
||||||
(require 'slime-fuzzy))
|
(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)))
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
;;
|
;;
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -4,3 +4,6 @@
|
||||||
(package! auto-compile)
|
(package! auto-compile)
|
||||||
(package! highlight-quoted)
|
(package! highlight-quoted)
|
||||||
(package! slime)
|
(package! slime)
|
||||||
|
|
||||||
|
(when (featurep! :feature syntax-checker)
|
||||||
|
(package! flycheck-cask))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue