Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 698 Bytes

erl.org

File metadata and controls

40 lines (30 loc) · 698 Bytes

Making of an Erlang IDE

So, to get syntax highlighting, lint and autocomplete, the packages we need are:

Mode

needed

erlang-mode distel popup company flycheck flycheck-tip company-distel

(setq load-path (cons  (getenv "ERLANG_EMACS_TOOLS")
      load-path))
(require 'erlang-start)


(use-package erlang
  :ensure t)
;;(require 'distel)

;; (use-package company-distel
;;   :ensure t
;;   :init (add-to-list 'company-backends 'company-distel))

Provide this so that it may be required

(provide 'erl)