doomemacs/modules/lang/erlang/packages.el
Peter Steidel 1d91d9c6d6 Erlang LSP module improvements
- Add README.org
- Make it so other completion frameworks don't compete with the lsp module
- load lsp via erlang-local-vars-hook
2020-01-14 19:11:49 -05:00

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))