- Add README.org - Make it so other completion frameworks don't compete with the lsp module - load lsp via erlang-local-vars-hook
15 lines
364 B
EmacsLisp
15 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))
|