These modules tend to conflict if more than one of them are enabled at once. More systematic compatibility tests are in the works, but for now this will do.
7 lines
271 B
EmacsLisp
7 lines
271 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; completion/ivy/doctor.el
|
|
|
|
(dolist (module '(helm ido vertico))
|
|
(when (doom-module-p :completion module)
|
|
(error! "This module is incompatible with :completion %s; disable one or the other"
|
|
module)))
|