mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
- Add README.org - Make it so other completion frameworks don't compete with the lsp module - load lsp via erlang-local-vars-hook
16 lines
364 B
EmacsLisp
16 lines
364 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; private/erlang/packages.el
|
|
|
|
(package! erlang)
|
|
|
|
(when (featurep! :checkers syntax)
|
|
(package! flycheck-rebar3))
|
|
|
|
(when (and (featurep! :completion ivy)
|
|
(not (featurep! +lsp)))
|
|
(package! ivy-erlang-complete))
|
|
|
|
(when (and (featurep! :completion company)
|
|
(not (featurep! +lsp)))
|
|
(package! company-erlang))
|