Fix references to :tools fly{spell,check}
This commit is contained in:
parent
920b511591
commit
12094788d7
48 changed files with 52 additions and 52 deletions
|
@ -42,7 +42,7 @@
|
||||||
Each entry is a three-level tree. For example:
|
Each entry is a three-level tree. For example:
|
||||||
|
|
||||||
(:feature (version-control (:emacs vc) (:ui vc-gutter))
|
(:feature (version-control (:emacs vc) (:ui vc-gutter))
|
||||||
(spellcheck (:tools flyspell))
|
(spellcheck (:checkers spell))
|
||||||
(syntax-checker (:tools flycheck)))
|
(syntax-checker (:tools flycheck)))
|
||||||
|
|
||||||
This marks :feature version-control, :feature spellcheck and :feature
|
This marks :feature version-control, :feature spellcheck and :feature
|
||||||
|
|
|
@ -176,7 +176,7 @@ playback.")
|
||||||
(define-key lui-mode-map "\C-u" #'lui-kill-to-beginning-of-line)
|
(define-key lui-mode-map "\C-u" #'lui-kill-to-beginning-of-line)
|
||||||
(setq lui-fill-type nil)
|
(setq lui-fill-type nil)
|
||||||
|
|
||||||
(when (featurep! :tools flyspell)
|
(when (featurep! :checkers spell)
|
||||||
(setq lui-flyspell-p t))
|
(setq lui-flyspell-p t))
|
||||||
|
|
||||||
(after! evil
|
(after! evil
|
||||||
|
|
|
@ -617,7 +617,7 @@
|
||||||
(:when (featurep! :lang org +present)
|
(:when (featurep! :lang org +present)
|
||||||
:desc "org-tree-slide mode" "p" #'+org-present/start)
|
:desc "org-tree-slide mode" "p" #'+org-present/start)
|
||||||
:desc "Read-only mode" "r" #'read-only-mode
|
:desc "Read-only mode" "r" #'read-only-mode
|
||||||
(:when (featurep! :tools flyspell)
|
(:when (featurep! :checkers spell)
|
||||||
:desc "Flyspell" "s" #'flyspell-mode)
|
:desc "Flyspell" "s" #'flyspell-mode)
|
||||||
(:when (featurep! :lang org +pomodoro)
|
(:when (featurep! :lang org +pomodoro)
|
||||||
:desc "Pomodoro timer" "t" #'org-pomodoro)
|
:desc "Pomodoro timer" "t" #'org-pomodoro)
|
||||||
|
|
|
@ -91,7 +91,7 @@
|
||||||
(defadvice! +mu4e--refresh-current-view-a (&rest _)
|
(defadvice! +mu4e--refresh-current-view-a (&rest _)
|
||||||
:after #'mu4e-mark-execute-all (mu4e-headers-rerun-search))
|
:after #'mu4e-mark-execute-all (mu4e-headers-rerun-search))
|
||||||
|
|
||||||
(when (featurep! :tools flyspell)
|
(when (featurep! :checkers spell)
|
||||||
(add-hook 'mu4e-compose-mode-hook #'flyspell-mode))
|
(add-hook 'mu4e-compose-mode-hook #'flyspell-mode))
|
||||||
|
|
||||||
;; Wrap text in messages
|
;; Wrap text in messages
|
||||||
|
|
|
@ -141,7 +141,7 @@ This is ignored by ccls.")
|
||||||
:hook (irony-mode . irony-eldoc))
|
:hook (irony-mode . irony-eldoc))
|
||||||
|
|
||||||
(use-package! flycheck-irony
|
(use-package! flycheck-irony
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:config (flycheck-irony-setup))
|
:config (flycheck-irony-setup))
|
||||||
|
|
||||||
(use-package! company-irony
|
(use-package! company-irony
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
(package! ccls)
|
(package! ccls)
|
||||||
(when (package! irony)
|
(when (package! irony)
|
||||||
(package! irony-eldoc)
|
(package! irony-eldoc)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-irony))
|
(package! flycheck-irony))
|
||||||
(when (featurep! :completion company)
|
(when (featurep! :completion company)
|
||||||
(package! company-irony)
|
(package! company-irony)
|
||||||
|
|
|
@ -158,5 +158,5 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-joker
|
(use-package! flycheck-joker
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after flycheck)
|
:after flycheck)
|
||||||
|
|
|
@ -4,5 +4,5 @@
|
||||||
(package! cider)
|
(package! cider)
|
||||||
(package! clj-refactor)
|
(package! clj-refactor)
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-joker))
|
(package! flycheck-joker))
|
||||||
|
|
|
@ -11,12 +11,12 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-crystal
|
(use-package! flycheck-crystal
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after crystal-mode)
|
:after crystal-mode)
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-ameba
|
(use-package! flycheck-ameba
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after crystal-mode
|
:after crystal-mode
|
||||||
:config (flycheck-ameba-setup))
|
:config (flycheck-ameba-setup))
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
|
|
||||||
(package! crystal-mode)
|
(package! crystal-mode)
|
||||||
(package! inf-crystal)
|
(package! inf-crystal)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-crystal)
|
(package! flycheck-crystal)
|
||||||
(package! flycheck-ameba))
|
(package! flycheck-ameba))
|
||||||
|
|
|
@ -33,7 +33,7 @@ manager or a version management tool such as [[https://github.com/asdf-vm/asdf-e
|
||||||
If you want to add support for LSP ([[modules/tools/lsp][:tools lsp]]), be sure to install [[https://github.com/JakeBecker/elixir-ls/][elixir-ls]]
|
If you want to add support for LSP ([[modules/tools/lsp][:tools lsp]]), be sure to install [[https://github.com/JakeBecker/elixir-ls/][elixir-ls]]
|
||||||
and enable ~:tools lsp~ in your ~init.el~.
|
and enable ~:tools lsp~ in your ~init.el~.
|
||||||
|
|
||||||
To support linting with [[https://github.com/rrrene/credo][credo]], add ~:tools flycheck~ to your ~init.el~
|
To support linting with [[https://github.com/rrrene/credo][credo]], add ~:checkers syntax~ to your ~init.el~
|
||||||
** Install Elixir
|
** Install Elixir
|
||||||
*** With ~asdf~
|
*** With ~asdf~
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
|
@ -59,4 +59,4 @@ sudo zypper install elixir
|
||||||
- Mix integration
|
- Mix integration
|
||||||
- Phoenix support
|
- Phoenix support
|
||||||
- ~iex~ integration (~:tools eval~)
|
- ~iex~ integration (~:tools eval~)
|
||||||
- Syntax checking (~:tools flycheck~, using [[https://github.com/aaronjensen/flycheck-credo][flycheck-credo]]~)
|
- Syntax checking (~:checkers syntax~, using [[https://github.com/aaronjensen/flycheck-credo][flycheck-credo]]~)
|
||||||
|
|
|
@ -17,6 +17,6 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-elm
|
(use-package! flycheck-elm
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after elm-mode
|
:after elm-mode
|
||||||
:config (add-to-list 'flycheck-checkers 'elm nil #'eq))
|
:config (add-to-list 'flycheck-checkers 'elm nil #'eq))
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
;;; lang/elm/packages.el
|
;;; lang/elm/packages.el
|
||||||
|
|
||||||
(package! elm-mode)
|
(package! elm-mode)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-elm))
|
(package! flycheck-elm))
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ This marks a foldable marker for `outline-minor-mode' in elisp buffers.")
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-cask
|
(use-package! flycheck-cask
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:defer t
|
:defer t
|
||||||
:init
|
:init
|
||||||
(add-hook! 'emacs-lisp-mode-hook
|
(add-hook! 'emacs-lisp-mode-hook
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
(package! elisp-def)
|
(package! elisp-def)
|
||||||
(package! elisp-demos)
|
(package! elisp-demos)
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-cask))
|
(package! flycheck-cask))
|
||||||
|
|
||||||
(package! buttercup)
|
(package! buttercup)
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-rebar3
|
(use-package! flycheck-rebar3
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after flycheck
|
:after flycheck
|
||||||
:config (flycheck-rebar3-setup))
|
:config (flycheck-rebar3-setup))
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
(package! erlang)
|
(package! erlang)
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-rebar3))
|
(package! flycheck-rebar3))
|
||||||
|
|
||||||
(when (featurep! :completion ivy)
|
(when (featurep! :completion ivy)
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
(add-to-list 'auto-mode-alist '("\\.jl\\'" . ess-julia-mode)))
|
(add-to-list 'auto-mode-alist '("\\.jl\\'" . ess-julia-mode)))
|
||||||
:config
|
:config
|
||||||
(setq ess-offset-continued 'straight
|
(setq ess-offset-continued 'straight
|
||||||
ess-use-flymake (not (featurep! :tools flycheck))
|
ess-use-flymake (not (featurep! :checkers syntax))
|
||||||
ess-nuke-trailing-whitespace-p t
|
ess-nuke-trailing-whitespace-p t
|
||||||
ess-style 'DEFAULT
|
ess-style 'DEFAULT
|
||||||
ess-history-directory (expand-file-name "ess-history/" doom-cache-dir))
|
ess-history-directory (expand-file-name "ess-history/" doom-cache-dir))
|
||||||
|
|
|
@ -40,7 +40,7 @@ This module adds [[https://golang.org][Go]] support.
|
||||||
+ [[https://github.com/brantou/emacs-go-tag][go-tag]]
|
+ [[https://github.com/brantou/emacs-go-tag][go-tag]]
|
||||||
+ [[https://github.com/mdempsky/gocode][company-go]]*
|
+ [[https://github.com/mdempsky/gocode][company-go]]*
|
||||||
+ [[https://github.com/s-kostyaev/go-gen-test][go-gen-test]]
|
+ [[https://github.com/s-kostyaev/go-gen-test][go-gen-test]]
|
||||||
+ [[https://github.com/weijiangan/flycheck-golangci-lint][flycheck-golangci-lint]] (if =:tools flycheck= is enabled)
|
+ [[https://github.com/weijiangan/flycheck-golangci-lint][flycheck-golangci-lint]] (if =:checkers syntax= is enabled)
|
||||||
|
|
||||||
* Prerequisites
|
* Prerequisites
|
||||||
** Go
|
** Go
|
||||||
|
|
|
@ -71,5 +71,5 @@
|
||||||
(setq company-go-show-annotation t))
|
(setq company-go-show-annotation t))
|
||||||
|
|
||||||
(use-package! flycheck-golangci-lint
|
(use-package! flycheck-golangci-lint
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:hook (go-mode . flycheck-golangci-lint-setup))
|
:hook (go-mode . flycheck-golangci-lint-setup))
|
||||||
|
|
|
@ -11,5 +11,5 @@
|
||||||
(when (featurep! :completion company)
|
(when (featurep! :completion company)
|
||||||
(package! company-go))
|
(package! company-go))
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-golangci-lint))
|
(package! flycheck-golangci-lint))
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"-fdefer-typed-holes"
|
"-fdefer-typed-holes"
|
||||||
"-fdefer-type-errors"))
|
"-fdefer-type-errors"))
|
||||||
:config
|
:config
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(flycheck-add-next-checker 'haskell-dante '(warning . haskell-hlint)))
|
(flycheck-add-next-checker 'haskell-dante '(warning . haskell-hlint)))
|
||||||
|
|
||||||
(set-company-backend! 'dante-mode #'dante-company)
|
(set-company-backend! 'dante-mode #'dante-company)
|
||||||
|
|
|
@ -16,7 +16,7 @@ This is necessary because `intero-mode' doesn't do its own error checks."
|
||||||
(setq haskell-compile-cabal-build-command "stack build --fast")
|
(setq haskell-compile-cabal-build-command "stack build --fast")
|
||||||
(set-lookup-handlers! 'intero-mode :definition #'intero-goto-definition)
|
(set-lookup-handlers! 'intero-mode :definition #'intero-goto-definition)
|
||||||
(set-company-backend! 'intero-mode 'intero-company)
|
(set-company-backend! 'intero-mode 'intero-company)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(flycheck-add-next-checker 'intero '(warning . haskell-hlint)))
|
(flycheck-add-next-checker 'intero '(warning . haskell-hlint)))
|
||||||
|
|
||||||
(when (featurep 'evil)
|
(when (featurep 'evil)
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
(after! haskell-mode
|
(after! haskell-mode
|
||||||
(setq haskell-process-suggest-remove-import-lines t ; warnings for redundant imports etc
|
(setq haskell-process-suggest-remove-import-lines t ; warnings for redundant imports etc
|
||||||
haskell-process-auto-import-loaded-modules t
|
haskell-process-auto-import-loaded-modules t
|
||||||
haskell-process-show-overlays (not (featurep! :tools flycheck))) ; redundant with flycheck
|
haskell-process-show-overlays (not (featurep! :checkers syntax))) ; redundant with flycheck
|
||||||
|
|
||||||
(set-lookup-handlers! 'haskell-mode
|
(set-lookup-handlers! 'haskell-mode
|
||||||
:definition #'haskell-mode-jump-to-def-or-tag)
|
:definition #'haskell-mode-jump-to-def-or-tag)
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
:init
|
:init
|
||||||
(setq meghanada-server-install-dir (concat doom-etc-dir "meghanada-server/")
|
(setq meghanada-server-install-dir (concat doom-etc-dir "meghanada-server/")
|
||||||
meghanada-use-company (featurep! :completion company)
|
meghanada-use-company (featurep! :completion company)
|
||||||
meghanada-use-flycheck (featurep! :tools flycheck)
|
meghanada-use-flycheck (featurep! :checkers syntax)
|
||||||
meghanada-use-eldoc t
|
meghanada-use-eldoc t
|
||||||
meghanada-use-auto-start t)
|
meghanada-use-auto-start t)
|
||||||
:config
|
:config
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
(add-to-list 'magic-mode-alist '(+javascript-jsx-file-p . rjsx-mode))
|
(add-to-list 'magic-mode-alist '(+javascript-jsx-file-p . rjsx-mode))
|
||||||
:config
|
:config
|
||||||
(set-electric! 'rjsx-mode :chars '(?\} ?\) ?. ?>))
|
(set-electric! 'rjsx-mode :chars '(?\} ?\) ?. ?>))
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(add-hook! 'rjsx-mode-hook
|
(add-hook! 'rjsx-mode-hook
|
||||||
;; jshint doesn't know how to deal with jsx
|
;; jshint doesn't know how to deal with jsx
|
||||||
(push 'javascript-jshint flycheck-disabled-checkers)))
|
(push 'javascript-jshint flycheck-disabled-checkers)))
|
||||||
|
|
|
@ -14,5 +14,5 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-kotlin
|
(use-package! flycheck-kotlin
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:hook (kotlin-mode . flycheck-kotlin-setup))
|
:hook (kotlin-mode . flycheck-kotlin-setup))
|
||||||
|
|
|
@ -3,5 +3,5 @@
|
||||||
|
|
||||||
(package! kotlin-mode)
|
(package! kotlin-mode)
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-kotlin))
|
(package! flycheck-kotlin))
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-ledger
|
(use-package! flycheck-ledger
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after ledger-mode)
|
:after ledger-mode)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,5 +6,5 @@
|
||||||
(when (featurep! :editor evil)
|
(when (featurep! :editor evil)
|
||||||
(package! evil-ledger))
|
(package! evil-ledger))
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-ledger))
|
(package! flycheck-ledger))
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
(add-hook! 'moonscript-mode-hook
|
(add-hook! 'moonscript-mode-hook
|
||||||
#'+lua-moonscript-fix-single-quotes-h
|
#'+lua-moonscript-fix-single-quotes-h
|
||||||
#'+lua-moonscript-fontify-interpolation-h)
|
#'+lua-moonscript-fontify-interpolation-h)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(require 'flycheck-moonscript nil t)))
|
(require 'flycheck-moonscript nil t)))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
(when (featurep! +moonscript)
|
(when (featurep! +moonscript)
|
||||||
(package! moonscript)
|
(package! moonscript)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-moonscript
|
(package! flycheck-moonscript
|
||||||
:recipe (:host github :repo "hlissner/emacs-flycheck-moonscript"))))
|
:recipe (:host github :repo "hlissner/emacs-flycheck-moonscript"))))
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,6 @@ windows."
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-nim
|
(use-package! flycheck-nim
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after nim-mode)
|
:after nim-mode)
|
||||||
|
|
||||||
|
|
|
@ -5,5 +5,5 @@
|
||||||
|
|
||||||
(package! nim-mode)
|
(package! nim-mode)
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-nim))
|
(package! flycheck-nim))
|
||||||
|
|
|
@ -55,10 +55,10 @@ opam install merlin utop ocp-indent dune ocamlformat
|
||||||
|
|
||||||
* Configuration
|
* Configuration
|
||||||
+ If =:completion company= is enabled then autocomplete is provided by =merlin=
|
+ If =:completion company= is enabled then autocomplete is provided by =merlin=
|
||||||
+ When =:tools flycheck= is enabled then =flycheck-ocaml= is activated to do
|
+ When =:checkers syntax= is enabled then =flycheck-ocaml= is activated to do
|
||||||
on-the-fly syntax/type checking via =merlin=, otherwise this is only done when
|
on-the-fly syntax/type checking via =merlin=, otherwise this is only done when
|
||||||
the file is saved.
|
the file is saved.
|
||||||
+ Spell checking is activated in comments if =:tools flyspell= is active
|
+ Spell checking is activated in comments if =:checkers spell= is active
|
||||||
+ A REPL is provided if =utop= is installed and =:tools eval= is active
|
+ A REPL is provided if =utop= is installed and =:tools eval= is active
|
||||||
+ If =:editor format= is enabled, the =ocamlformat= executable is available and
|
+ If =:editor format= is enabled, the =ocamlformat= executable is available and
|
||||||
there is an =.ocamlformat= file present then =format-all-buffer= is bound to
|
there is an =.ocamlformat= file present then =format-all-buffer= is bound to
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
(tuareg-opam-update-env (tuareg-opam-current-compiler))
|
(tuareg-opam-update-env (tuareg-opam-current-compiler))
|
||||||
|
|
||||||
;; Spell-check comments
|
;; Spell-check comments
|
||||||
(when (featurep! :tools flyspell)
|
(when (featurep! :checkers spell)
|
||||||
(add-hook 'tuareg-mode-local-vars-hook #'flyspell-prog-mode))
|
(add-hook 'tuareg-mode-local-vars-hook #'flyspell-prog-mode))
|
||||||
|
|
||||||
;; Ensure asterixes in block comments have at least one space of indentation
|
;; Ensure asterixes in block comments have at least one space of indentation
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
"t" #'merlin-type-enclosing)
|
"t" #'merlin-type-enclosing)
|
||||||
|
|
||||||
(use-package! flycheck-ocaml
|
(use-package! flycheck-ocaml
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:hook (merlin-mode . +ocaml-init-flycheck-h)
|
:hook (merlin-mode . +ocaml-init-flycheck-h)
|
||||||
:config
|
:config
|
||||||
(defun +ocaml-init-flycheck-h ()
|
(defun +ocaml-init-flycheck-h ()
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
(unless (featurep! +lsp)
|
(unless (featurep! +lsp)
|
||||||
(package! merlin)
|
(package! merlin)
|
||||||
(package! merlin-eldoc)
|
(package! merlin-eldoc)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-ocaml)))
|
(package! flycheck-ocaml)))
|
||||||
|
|
||||||
(package! ocp-indent)
|
(package! ocp-indent)
|
||||||
|
|
|
@ -6,5 +6,5 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-perl6
|
(use-package! flycheck-perl6
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after perl6-mode)
|
:after perl6-mode)
|
||||||
|
|
|
@ -3,5 +3,5 @@
|
||||||
|
|
||||||
(package! perl6-mode)
|
(package! perl6-mode)
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-perl6))
|
(package! flycheck-perl6))
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-plantuml
|
(use-package! flycheck-plantuml
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after plantuml-mode
|
:after plantuml-mode
|
||||||
:config (flycheck-plantuml-setup))
|
:config (flycheck-plantuml-setup))
|
||||||
|
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
;;; lang/plantuml/packages.el
|
;;; lang/plantuml/packages.el
|
||||||
|
|
||||||
(package! plantuml-mode)
|
(package! plantuml-mode)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-plantuml))
|
(package! flycheck-plantuml))
|
||||||
|
|
|
@ -46,7 +46,7 @@ Adds Python support to Doom Emacs.
|
||||||
+ [[https://github.com/emacs-lsp/lsp-python-ms][lsp-python-ms]]*
|
+ [[https://github.com/emacs-lsp/lsp-python-ms][lsp-python-ms]]*
|
||||||
+ ~+cython~
|
+ ~+cython~
|
||||||
+ [[https://github.com/cython/cython/blob/master/Tools/cython-mode.el][Cython-mode]]
|
+ [[https://github.com/cython/cython/blob/master/Tools/cython-mode.el][Cython-mode]]
|
||||||
+ ~:tools flycheck~ [[https://github.com/lbolla/emacs-flycheck-cython/tree/master][Flycheck-cython]]
|
+ ~:checkers syntax~ [[https://github.com/lbolla/emacs-flycheck-cython/tree/master][Flycheck-cython]]
|
||||||
|
|
||||||
* Prerequisites
|
* Prerequisites
|
||||||
This module has no direct prerequisites. Here are some of its soft dependencies.
|
This module has no direct prerequisites. Here are some of its soft dependencies.
|
||||||
|
|
|
@ -310,5 +310,5 @@ called.")
|
||||||
|
|
||||||
(use-package! flycheck-cython
|
(use-package! flycheck-cython
|
||||||
:when (featurep! +cython)
|
:when (featurep! +cython)
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after cython-mode)
|
:after cython-mode)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
(package! pip-requirements)
|
(package! pip-requirements)
|
||||||
(when (featurep! +cython)
|
(when (featurep! +cython)
|
||||||
(package! cython-mode)
|
(package! cython-mode)
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-cython)))
|
(package! flycheck-cython)))
|
||||||
|
|
||||||
;; LSP
|
;; LSP
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
;;; lang/sh/doctor.el -*- lexical-binding: t; -*-
|
;;; lang/sh/doctor.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(unless (executable-find "shellcheck")
|
(unless (executable-find "shellcheck")
|
||||||
(warn! "Couldn't find shellcheck. Shell script linting will not work")))
|
(warn! "Couldn't find shellcheck. Shell script linting will not work")))
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! solidity-flycheck ; included with solidity-mode
|
(use-package! solidity-flycheck ; included with solidity-mode
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:after solidity-mode
|
:after solidity-mode
|
||||||
:config
|
:config
|
||||||
(setq flycheck-solidity-solc-addstd-contracts t)
|
(setq flycheck-solidity-solc-addstd-contracts t)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
|
|
||||||
(use-package! flycheck-swift
|
(use-package! flycheck-swift
|
||||||
:when (featurep! :tools flycheck)
|
:when (featurep! :checkers syntax)
|
||||||
:unless (featurep! +lsp)
|
:unless (featurep! +lsp)
|
||||||
:after swift-mode
|
:after swift-mode
|
||||||
:config (flycheck-swift-setup))
|
:config (flycheck-swift-setup))
|
||||||
|
|
|
@ -7,5 +7,5 @@
|
||||||
(package! lsp-sourcekit)
|
(package! lsp-sourcekit)
|
||||||
(when (featurep! :completion company)
|
(when (featurep! :completion company)
|
||||||
(package! company-sourcekit))
|
(package! company-sourcekit))
|
||||||
(when (featurep! :tools flycheck)
|
(when (featurep! :checkers syntax)
|
||||||
(package! flycheck-swift)))
|
(package! flycheck-swift)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue