spacemacs/layers/+lang/erlang/packages.el
syl20bnr f45ce1a88e syntax-checking: rename function add-flycheck-hook to enable-flycheck
spacemacs/add-flycheck-hook was not really hooking anything, change the name
to better reflect what it does.
Also changed the push for a add-to-list to avoid duplicates.
2017-03-19 12:40:36 -04:00

53 lines
1.6 KiB
EmacsLisp

;;; packages.el --- Erlang Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq erlang-packages
'(
company
erlang
ggtags
helm-gtags
flycheck
))
(defun erlang/post-init-company ()
(add-hook 'erlang-mode-hook 'company-mode))
(defun erlang/init-erlang ()
(use-package erlang
:defer t
:init
(progn
;; explicitly run prog-mode hooks since erlang mode does is not
;; derived from prog-mode major-mode
(add-hook 'erlang-mode-hook 'spacemacs/run-prog-mode-hooks)
;; (setq erlang-root-dir "/usr/lib/erlang/erts-5.10.3")
;; (add-to-list 'exec-path "/usr/lib/erlang/erts-5.10.3/bin")
;; (setq erlang-man-root-dir "/usr/lib/erlang/erts-5.10.3/man")
;; (add-hook 'erlang-mode-hook
;; (lambda ()
;; (setq mode-name "Erlang")
;; ;; when starting an Erlang shell in Emacs, with a custom node name
;; (setq inferior-erlang-machine-options '("-sname" "syl20bnr"))
;; ))
(setq erlang-compile-extra-opts '(debug_info)))
:config
(require 'erlang-start)))
(defun erlang/post-init-flycheck ()
(spacemacs/enable-flycheck 'erlang-mode))
(defun erlang/post-init-ggtags ()
(add-hook 'erlang-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
(defun erlang/post-init-helm-gtags ()
(spacemacs/helm-gtags-define-keys-for-mode 'erlang-mode))