Remove +joker flag for clojure layer

Flycheck apparently won't complain if joker isn't installed
This commit is contained in:
Matthew Lyon 2018-09-09 10:15:20 -07:00
parent 1f581a4e36
commit ca033e714c
4 changed files with 5 additions and 9 deletions

View file

@ -80,7 +80,7 @@
:lang :lang
;assembly ; assembly for fun or debugging ;assembly ; assembly for fun or debugging
;(cc +irony +rtags); C/C++/Obj-C madness ;(cc +irony +rtags); C/C++/Obj-C madness
;(clojure +joker) ; java with a lisp ;clojure ; java with a lisp
;common-lisp ; if you've seen one lisp, you've seen them all ;common-lisp ; if you've seen one lisp, you've seen them all
;coq ; proofs-as-programs ;coq ; proofs-as-programs
;crystal ; ruby at the speed of c ;crystal ; ruby at the speed of c

View file

@ -1,4 +0,0 @@
;;; lang/clojure/+joker.el -*- lexical-binding: t; -*-
(def-package! flycheck-joker
:after (flycheck clojure-mode))

View file

@ -38,5 +38,6 @@
:localleader :localleader
:desc "Refactor hydra" :n "r" #'hydra-cljr-help-menu/body))) :desc "Refactor hydra" :n "r" #'hydra-cljr-help-menu/body)))
(when (and (featurep! +joker) (featurep! :feature syntax-checker)) (when (featurep! :feature syntax-checker)
(load! "+joker")) (def-package! flycheck-joker
:after (flycheck clojure-mode)))

View file

@ -4,6 +4,5 @@
(package! cider) (package! cider)
(package! clj-refactor) (package! clj-refactor)
(when (and (featurep! :feature syntax-checker) (when (featurep! :feature syntax-checker)
(featurep! +joker))
(package! flycheck-joker)) (package! flycheck-joker))