It's redundant with company-erlang, which uses ivy-erlang-complete as a backend anyhow. Fixes #2786
24 lines
698 B
EmacsLisp
24 lines
698 B
EmacsLisp
;;; lang/erlang/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! erlang
|
|
:mode ("\\.erlang\\'" . erlang-mode)
|
|
:mode ("/rebar\\.config\\(?:\\.script\\)?\\'" . erlang-mode)
|
|
:mode ("/\\(?:app\\|sys\\)\\.config\\'" . erlang-mode)
|
|
:config
|
|
(when (featurep! +lsp)
|
|
(add-hook 'erlang-mode-local-vars-hook #'lsp!)))
|
|
|
|
|
|
(use-package! flycheck-rebar3
|
|
:when (featurep! :checkers syntax)
|
|
:after flycheck
|
|
:config (flycheck-rebar3-setup))
|
|
|
|
|
|
(use-package! company-erlang
|
|
:when (featurep! :completion company)
|
|
:unless (featurep! +lsp)
|
|
:hook (erlang-mode . company-erlang-init)
|
|
:config
|
|
(add-hook! 'erlang-mode-hook
|
|
(add-hook 'after-save-hook #'ivy-erlang-complete-reparse nil t)))
|