Merge branch 'bandresen-flycheck-cask'
* bandresen-flycheck-cask: Move flycheck-cask to lang/emacs-lisp Add: feature/syntax-checker: add flycheck-cask for emacs-lisp
This commit is contained in:
commit
867602bee5
3 changed files with 12 additions and 0 deletions
|
@ -27,3 +27,4 @@
|
||||||
(setq flycheck-pos-tip-timeout 10
|
(setq flycheck-pos-tip-timeout 10
|
||||||
flycheck-display-errors-delay 0.5)
|
flycheck-display-errors-delay 0.5)
|
||||||
(flycheck-pos-tip-mode +1))
|
(flycheck-pos-tip-mode +1))
|
||||||
|
|
||||||
|
|
|
@ -98,6 +98,14 @@
|
||||||
(add-hook 'macrostep-mode-hook #'evil-normalize-keymaps))
|
(add-hook 'macrostep-mode-hook #'evil-normalize-keymaps))
|
||||||
|
|
||||||
|
|
||||||
|
(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)))
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
;;
|
;;
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -5,3 +5,6 @@
|
||||||
(package! highlight-quoted)
|
(package! highlight-quoted)
|
||||||
(package! slime)
|
(package! slime)
|
||||||
(package! macrostep)
|
(package! macrostep)
|
||||||
|
|
||||||
|
(when (featurep! :feature syntax-checker)
|
||||||
|
(package! flycheck-cask))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue