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
This commit is contained in:
Peter Steidel 2020-01-14 19:09:38 -05:00
parent 89dd2f98a4
commit 1d91d9c6d6
3 changed files with 44 additions and 3 deletions

View file

@ -6,8 +6,10 @@
(when (featurep! :checkers syntax)
(package! flycheck-rebar3))
(when (featurep! :completion ivy)
(when (and (featurep! :completion ivy)
(not (featurep! +lsp)))
(package! ivy-erlang-complete))
(when (featurep! :completion company)
(when (and (featurep! :completion company)
(not (featurep! +lsp)))
(package! company-erlang))